Browse Source

fix(nc-gui): Invalid prop: type check failed for prop "gutter"

pull/7855/head
Ramesh Mane 4 months ago
parent
commit
d0790d329d
  1. 2
      packages/nc-gui/components/smartsheet/column/AttachmentOptions.vue
  2. 2
      packages/nc-gui/components/smartsheet/column/CurrencyOptions.vue
  3. 2
      packages/nc-gui/components/smartsheet/column/LinkOptions.vue
  4. 2
      packages/nc-gui/components/smartsheet/column/PgBinaryOptions.vue

2
packages/nc-gui/components/smartsheet/column/AttachmentOptions.vue

@ -82,7 +82,7 @@ watch(searchValue, (value) => {
</script>
<template>
<a-row class="my-2" gutter="8">
<a-row class="my-2" :gutter="8">
<a-col :span="12">
<a-form-item v-bind="validateInfos['meta.maxNumberOfAttachments']" label="Max Number of Attachments">
<a-input-number v-model:value="vModel.meta.maxNumberOfAttachments" :min="1" class="!w-full nc-attachment-max-count" />

2
packages/nc-gui/components/smartsheet/column/CurrencyOptions.vue

@ -77,7 +77,7 @@ currencyLocales().then((locales) => {
</script>
<template>
<a-row gutter="8">
<a-row :gutter="8">
<a-col :span="12">
<a-form-item v-bind="validateInfos['meta.currency_locale']" :label="$t('title.currencyLocale')">
<a-select

2
packages/nc-gui/components/smartsheet/column/LinkOptions.vue

@ -49,7 +49,7 @@ vModel.value.meta = {
</script>
<template>
<a-row class="my-2" gutter="8">
<a-row class="my-2" :gutter="8">
<a-col :span="12">
<a-form-item v-bind="validateInfos['meta.singular']" :label="$t('labels.singularLabel')">
<a-input

2
packages/nc-gui/components/smartsheet/column/PgBinaryOptions.vue

@ -21,7 +21,7 @@ vModel.value.meta = {
</script>
<template>
<a-row class="my-2" gutter="8">
<a-row class="my-2" :gutter="8">
<a-col :span="24">
<a-form-item v-bind="validateInfos['meta.format']" :label="$t('labels.binaryEncodingFormat')">
<a-select

Loading…
Cancel
Save