We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4be0c5 commit 68f12f5Copy full SHA for 68f12f5
packages/data/src/lib/resource-select/resource-select.component.ts
@@ -123,6 +123,9 @@ export class ResourceSelectComponent extends SelectComponent<Resource> implement
123
/** Is called when a selected item is clicked. Either outputs itemClick (if subscribed) or opens the edit pop if puttable. */
124
clickItem(item, e) {
125
if (this.itemClick.observers.length) {
126
+ e.preventDefault();
127
+ e.stopPropagation();
128
+ e.stopImmediatePropagation();
129
return this.itemClick.emit(item);
130
}
131
if (!this.solo && this.hasMethod('put')) {
0 commit comments