diff --git a/src/modules/documentExecution/dashboard/widget/DiscoveryWidget/DiscoveryWidget.vue b/src/modules/documentExecution/dashboard/widget/DiscoveryWidget/DiscoveryWidget.vue index f9fd5d62a..bf75fe183 100644 --- a/src/modules/documentExecution/dashboard/widget/DiscoveryWidget/DiscoveryWidget.vue +++ b/src/modules/documentExecution/dashboard/widget/DiscoveryWidget/DiscoveryWidget.vue @@ -419,11 +419,14 @@ export default defineComponent({ return columntooltipConfig }, onCellClicked(node) { - if (!this.editorMode) { + if (this.editorMode) return + if (this.propWidget.settings.interactions?.selection?.enabled) { if (node.colDef.measure == 'MEASURE' || node.colDef.pinned || node.value === '' || node.value == undefined) return updateStoreSelections(createNewTableSelection([node.value], node.colDef.columnName, this.propWidget, this.datasets), this.activeSelections, this.dashboardId, this.setSelections, this.$http) this.gridApi?.refreshCells({ force: true }) + } else { + this.executeInteractions(node) } }, executeInteractions(node: any) {