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

Loading…
Cancel
Save