Browse Source

fix: Removed lazy loading of expanded form for decreasing opening expanded form in mobile

pull/6498/head
Muhammed Mustafa 1 year ago
parent
commit
280747de2a
  1. 4
      packages/nc-gui/components/smartsheet/grid/index.vue

4
packages/nc-gui/components/smartsheet/grid/index.vue

@ -237,8 +237,7 @@ onMounted(() => {
/> />
</Suspense> </Suspense>
<Suspense> <SmartsheetExpandedForm
<LazySmartsheetExpandedForm
v-if="expandedFormOnRowIdDlg" v-if="expandedFormOnRowIdDlg"
:key="routeQuery.rowId" :key="routeQuery.rowId"
v-model="expandedFormOnRowIdDlg" v-model="expandedFormOnRowIdDlg"
@ -253,7 +252,6 @@ onMounted(() => {
@next="navigateToSiblingRow(NavigateDir.NEXT)" @next="navigateToSiblingRow(NavigateDir.NEXT)"
@prev="navigateToSiblingRow(NavigateDir.PREV)" @prev="navigateToSiblingRow(NavigateDir.PREV)"
/> />
</Suspense>
<Suspense> <Suspense>
<LazyDlgBulkUpdate <LazyDlgBulkUpdate

Loading…
Cancel
Save