Browse Source

refactor(gui-v2): shared view list size correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/2860/head
Pranav C 2 years ago
parent
commit
a089e9cb32
  1. 8
      packages/nc-gui-v2/components/smartsheet-toolbar/SharedViewList.vue

8
packages/nc-gui-v2/components/smartsheet-toolbar/SharedViewList.vue

@ -109,7 +109,7 @@ const deleteLink = async (id: string) => {
<!-- View Link -->
<a-table-column key="title" :title="$t('labels.viewLink')" data-index="title">
<template #default="{ record }">
<nuxt-link :to="sharedViewUrl(record)">
<nuxt-link :to="sharedViewUrl(record)" class="text-xs">
{{ `${dashboardUrl}/${sharedViewUrl(record)}` }}
</nuxt-link>
</template>
@ -149,4 +149,8 @@ const deleteLink = async (id: string) => {
</div>
</template>
<style scoped></style>
<style scoped>
:deep(.ant-pagination-item > a){
@apply leading-normal
}
</style>

Loading…
Cancel
Save