Browse Source

fix(nc-gui): add unsupported url path char tooltip

nc-feat/custom-url-support-for-shared-base-view
Ramesh Mane 14 hours ago
parent
commit
a340409107
  1. 4
      packages/nc-gui/components/dlg/share-and-collaborate/SharePage.vue
  2. 7
      packages/nc-gui/lang/en.json

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

@ -415,7 +415,7 @@ const copyCustomUrl = async (custUrl = '') => {
</div>
<NcTooltip class="flex items-center">
<template #title> {{ $t('tooltip.surveyFormInfo') }}</template>
<GeneralIcon icon="info" class="flex-none text-gray-600 cursor-pointer"></GeneralIcon>
<GeneralIcon icon="info" class="flex-none text-gray-400 cursor-pointer"></GeneralIcon>
</NcTooltip>
</div>
<a-switch
@ -454,7 +454,7 @@ const copyCustomUrl = async (custUrl = '') => {
{{ $t('tooltip.preFillFormInfo') }}
</div>
</template>
<GeneralIcon icon="info" class="flex-none text-gray-600 cursor-pointer"></GeneralIcon>
<GeneralIcon icon="info" class="flex-none text-gray-400 cursor-pointer"></GeneralIcon>
</NcTooltip>
</div>
<a-switch

7
packages/nc-gui/lang/en.json

@ -647,7 +647,8 @@
"unlockThisVieToMakeChanges": "Unlock this view to make changes",
"yourBaseRole": "Your base role",
"lockedByUser": "Locked by {user}",
"thisPageNoLongerExists": "This page no longer exists"
"thisPageNoLongerExists": "This page no longer exists",
"customUrl": "Custom URL"
},
"labels": {
"continue": "Continue",
@ -1849,7 +1850,9 @@
"somethingWentWrong": "Something went wrong",
"draggedContentIsNotTypeOfImage": "Dragged content is not type of image",
"fieldToParseImageData": "Field to parse image data",
"someOfTheRequiredFieldsAreEmpty": "Some of the required fields are empty"
"someOfTheRequiredFieldsAreEmpty": "Some of the required fields are empty",
"unsupportedCharacter": "Unsupported character: {char}",
"unsupportedCharacters": "Unsupported characters: {char}"
},
"toast": {
"exportMetadata": "Base metadata exported successfully",

Loading…
Cancel
Save