mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 11:36:59 +00:00
fix(nc-gui): json & virtual fields spacing issue
This commit is contained in:
@@ -90,13 +90,25 @@ const rowHeight = inject(RowHeightInj, ref(undefined))
|
||||
</JsBarcodeWrapper>
|
||||
</div>
|
||||
|
||||
<div v-if="tooManyCharsForBarcode" class="text-left text-wrap mt-2 text-[#e65100] text-xs">
|
||||
<div
|
||||
v-if="tooManyCharsForBarcode"
|
||||
class="text-left text-wrap text-[#e65100] text-xs"
|
||||
:class="isExpandedFormOpen ? 'px-2' : 'px-0'"
|
||||
>
|
||||
{{ $t('labels.barcodeValueTooLong') }}
|
||||
</div>
|
||||
<div v-if="showEditNonEditableFieldWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs">
|
||||
<div
|
||||
v-if="showEditNonEditableFieldWarning"
|
||||
class="text-left text-wrap mt-2 text-[#e65100] text-xs"
|
||||
:class="isExpandedFormOpen ? 'px-2' : 'px-0'"
|
||||
>
|
||||
{{ $t('msg.warning.nonEditableFields.computedFieldUnableToClear') }}
|
||||
</div>
|
||||
<div v-if="showClearNonEditableFieldWarning" class="text-left text-wrap mt-2 text-[#e65100] text-xs">
|
||||
<div
|
||||
v-if="showClearNonEditableFieldWarning"
|
||||
class="text-left text-wrap mt-2 text-[#e65100] text-xs"
|
||||
:class="isExpandedFormOpen ? 'px-2' : 'px-0'"
|
||||
>
|
||||
{{ $t('msg.warning.nonEditableFields.barcodeFieldsCannotBeDirectlyChanged') }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user