Browse Source

refactor(gui): show comments by default

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5271/head
Pranav C 2 years ago
parent
commit
5eecd646f3
  1. 4
      packages/nc-gui/composables/useExpandedFormStore.ts

4
packages/nc-gui/composables/useExpandedFormStore.ts

@ -30,13 +30,13 @@ const [useProvideExpandedFormStore, useExpandedFormStore] = useInjectionState((m
const { t } = useI18n()
const commentsOnly = ref(false)
const commentsOnly = ref(true)
const commentsAndLogs = ref<any[]>([])
const comment = ref('')
const commentsDrawer = ref(false)
const commentsDrawer = ref(true)
const saveRowAndStay = ref(1)

Loading…
Cancel
Save