Browse Source

Merge pull request #6535 from nocodb/fix/share-form-rtl

fix: remove rtl orientation for ee
pull/6536/head
Raju Udava 1 year ago committed by GitHub
parent
commit
65182456b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/dlg/share-and-collaborate/SharePage.vue

2
packages/nc-gui/components/dlg/share-and-collaborate/SharePage.vue

@ -333,7 +333,7 @@ const isPublicShareDisabled = computed(() => {
<!-- todo i18n -->
</a-switch>
</div>
<div v-if="activeView?.type === ViewTypes.FORM" class="flex flex-row justify-between">
<div v-if="activeView?.type === ViewTypes.FORM && isEeUI" class="flex flex-row justify-between">
<!-- use RTL orientation in form - todo: i18n -->
<div class="text-black">{{ $t('activity.rtlOrientation') }}</div>
<a-switch v-model:checked="withRTL" data-testid="nc-modal-share-view__RTL">

Loading…
Cancel
Save