LP#1775466 Tree widget expand by default
authorBill Erickson <berickxx@gmail.com>
Tue, 24 Jul 2018 19:51:06 +0000 (15:51 -0400)
committerBill Erickson <berickxx@gmail.com>
Wed, 25 Jul 2018 17:12:10 +0000 (13:12 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/eg2/src/app/share/tree/tree.ts

index 2eb500e..a58cb32 100644 (file)
@@ -23,7 +23,7 @@ export class TreeNode {
 
     constructor(values: {[key: string]: any}) {
         this.children = [];
-        this.expanded = false;
+        this.expanded = true;
         this.depth = 0;
         this.selected = false;