Browse Source

fix: load lookup columns if new lookup column added

pull/6987/head
Pranav C 1 year ago
parent
commit
92e7a884fd
  1. 5
      packages/nc-gui/components/smartsheet/toolbar/GroupByMenu.vue

5
packages/nc-gui/components/smartsheet/toolbar/GroupByMenu.vue

@ -15,6 +15,7 @@ import {
useNuxtApp,
useSmartsheetStoreOrThrow,
useViewColumnsOrThrow,
watch,
} from '#imports'
const groupingUidt = [
@ -207,6 +208,10 @@ const loadBtLookups = async () => {
onMounted(async () => {
await loadBtLookups()
})
watch(meta, async () => {
await loadBtLookups()
})
</script>
<template>

Loading…
Cancel
Save