File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
packages/data/src/entry-select Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ <h2 class="mega">ec-entry-select</h2>
7
7
< strong > without model</ strong >
8
8
< ec-entry-select > </ ec-entry-select >
9
9
10
- <!--
11
10
< hr >
12
11
13
12
< strong > default usage</ strong >
@@ -23,10 +22,10 @@ <h2 class="mega">ec-entry-select</h2>
23
22
< strong > selected IDs:</ strong >
24
23
< pre > {{entrySelect.selection?.getValue() | json}}</ pre >
25
24
</ div >
26
- <strong>solo with disableSelect</strong>
27
- <ec-entry-select model="muffin" [solo]="true" #soloEntry [ config]="{disableSelect:true}"></ec-entry-select>
25
+ < strong > with disableSelect</ strong >
26
+ < ec-entry-select model ="muffin " [config] ="{disableSelect:true} "> </ ec-entry-select >
28
27
29
- <pre>{{soloEntry.selection?.getValue()}}</pre>
28
+ <!-- < pre>{{soloEntry.selection?.getValue()}}</pre> -- >
30
29
31
30
< strong > solo with disableListPop</ strong >
32
31
< ec-entry-select model ="muffin " [solo] ="true " [config] ="{disableListPop:true} "> </ ec-entry-select >
@@ -40,4 +39,4 @@ <h2 class="mega">ec-entry-select</h2>
40
39
< strong > solo with deleteOnRemove</ strong >
41
40
< ec-entry-select model ="muffin " [solo] ="true " [config] ="{deleteOnRemove:true,safeDelete:false} "> </ ec-entry-select >
42
41
43
- <ec-notifications></ec-notifications>-->
42
+ < ec-notifications > </ ec-notifications >
Original file line number Diff line number Diff line change @@ -95,6 +95,10 @@ export class EntrySelectComponent extends SelectComponent<EntryResource> impleme
95
95
item . getBody ( ) . delete ( ) ;
96
96
}
97
97
}
98
+ if ( e ) {
99
+ e . preventDefault ( ) ;
100
+ e . stopPropagation ( ) ;
101
+ }
98
102
}
99
103
100
104
activate ( $event ) {
You can’t perform that action at this time.
0 commit comments