Browse Source

fix: url open not working in gallery and kanban (#9273)

pull/9280/head
Anbarasu 3 months ago committed by GitHub
parent
commit
745c135aa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      packages/nc-gui/components/smartsheet/Gallery.vue
  2. 1
      packages/nc-gui/components/smartsheet/Kanban.vue

1
packages/nc-gui/components/smartsheet/Gallery.vue

@ -143,7 +143,6 @@ const openNewRecordFormHookHandler = async () => {
const handleClick = (col, event) => {
if (isButton(col)) {
event.preventDefault()
event.stopPropagation()
}
}

1
packages/nc-gui/components/smartsheet/Kanban.vue

@ -327,7 +327,6 @@ const handleCollapseStack = async (stackIdx: number) => {
const handleCellClick = (col, event) => {
if (isButton(col)) {
event.preventDefault()
event.stopPropagation()
}
}

Loading…
Cancel
Save