Skip to content

Commit

Permalink
UI Navigation filters : Enable placeholder descriptions for editable-…
Browse files Browse the repository at this point in the history
…multi-select query filters #4150
  • Loading branch information
shral committed Jul 24, 2023
1 parent 1bd27e9 commit efbd6f4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@
[ngStyle]="line[index].style"
*ngSwitchCase="'editable-select'"
[placeholder]="line[index]?.placeholder"
[title]="line[index]?.description || ''"
[ngClass]="line[index].cssClass"
[options]="line[index].options"
[optionsTree]="line[index].optionsTree"
Expand All @@ -123,7 +124,8 @@
<dcm-drop-down
[ngStyle]="line[index].style"
*ngSwitchCase="'editable-multi-select'"
[placeholder]="line[index]?.placeholder"
[placeholder]="line[index]?.placeholder || ''"
[title]="line[index]?.description || ''"
[ngClass]="line[index].cssClass"
[options]="line[index].options"
[optionsTree]="line[index].optionsTree"
Expand All @@ -141,6 +143,7 @@
[ngStyle]="line[index].style"
*ngSwitchCase="'multi-select'"
[placeholder]="line[index]?.placeholder"
[title]="line[index]?.description || ''"
[ngClass]="line[index].cssClass"
[optionsTree]="line[index].optionsTree"
[options]="line[index].options"
Expand All @@ -153,6 +156,7 @@
[ngStyle]="line[index].style"
*ngSwitchCase="'html-select'"
[placeholder]="line[index]?.placeholder"
[title]="line[index]?.description || ''"
[ngClass]="line[index].cssClass"
[options]="line[index].options"
[(model)]="model[line[index].filterKey]"
Expand Down

0 comments on commit efbd6f4

Please sign in to comment.