Browse Source

fix: Fixed View style for mobile view

pull/6498/head
Muhammed Mustafa 1 year ago
parent
commit
334c0e0ae7
  1. 8
      packages/nc-gui/components/dashboard/TreeView/ViewsList.vue
  2. 3
      packages/nc-gui/lang/en.json

8
packages/nc-gui/components/dashboard/TreeView/ViewsList.vue

@ -351,13 +351,13 @@ function onOpenModal({
<template> <template>
<div <div
v-if="!views.length" v-if="!views.length"
class="text-gray-500 my-1.75" class="text-gray-500 my-1.75 xs:(my-2.5 text-base)"
:class="{ :class="{
'ml-19.25': isDefaultBase, 'ml-19.25 xs:ml-22.25': isDefaultBase,
'ml-24.75': !isDefaultBase, 'ml-24.75 xs:ml-30': !isDefaultBase,
}" }"
> >
No Views {{ $t('labels.noViews') }}
</div> </div>
<a-menu <a-menu

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

@ -408,7 +408,8 @@
"addRowGrid": "Manually add data in grid view", "addRowGrid": "Manually add data in grid view",
"addRowForm": "Enter record data through a form", "addRowForm": "Enter record data through a form",
"noAccess": "No access", "noAccess": "No access",
"restApis": "Rest APIs" "restApis": "Rest APIs",
"noViews": "No Views"
}, },
"activity": { "activity": {
"moveProject": "Move Project", "moveProject": "Move Project",

Loading…
Cancel
Save