Browse Source

refactor/gui-v2-store-form-layout-improved-and-cleanup

pull/2798/head
Muhammed Mustafa 2 years ago
parent
commit
0003b2d607
  1. 2
      packages/nc-gui-v2/components.d.ts
  2. 2
      packages/nc-gui-v2/components/dashboard/settings/AppStore.vue
  3. 4
      packages/nc-gui-v2/components/dashboard/settings/AppStore/AppInstall.vue

2
packages/nc-gui-v2/components.d.ts vendored

@ -50,4 +50,4 @@ declare module '@vue/runtime-core' {
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
}
}
}

2
packages/nc-gui-v2/components/dashboard/settings/AppStore/index.vue → packages/nc-gui-v2/components/dashboard/settings/AppStore.vue

@ -1,6 +1,6 @@
<script setup lang="ts">
import { useToast } from 'vue-toastification'
import AppInstall from './AppInstall.vue'
import AppInstall from './AppStore/AppInstall.vue'
import MdiEditIcon from '~icons/ic/round-edit'
import MdiCloseCircleIcon from '~icons/mdi/close-circle-outline'
import MdiPlusIcon from '~icons/mdi/plus'

4
packages/nc-gui-v2/components/dashboard/settings/AppStore/AppInstall.vue

@ -37,8 +37,8 @@ let isLoading = $ref(true)
let loadingAction = $ref<null | Action>(null)
const layout = {
labelCol: { span: 10 },
wrapperCol: { span: 16 },
labelCol: { span: 14, pull: 4 },
wrapperCol: { span: 20, pull: 4 },
}
const addSetting = () => pluginFormData.push({})

Loading…
Cancel
Save