Browse Source

fix: recycle post title cannot be displayed in full (#537)

Signed-off-by: Ryan Wang <i@ryanc.cc>
pull/541/head
Ryan Wang 3 years ago committed by GitHub
parent
commit
e8146d929f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/components/Post/PostListView.vue
  2. 8
      src/views/sheet/components/CustomSheetList.vue

8
src/components/Post/PostListView.vue

@ -209,9 +209,9 @@
{{ item.title }}
</a>
</a-tooltip>
<a-button v-else class="!p-0" disabled type="link">
<a v-else class="no-underline" href="javascript:void(0);" disabled>
{{ item.title }}
</a-button>
</a>
</div>
</template>
</a-list-item-meta>
@ -285,9 +285,9 @@
{{ text }}
</a>
</a-tooltip>
<a-button v-else class="!p-0" disabled type="link">
<a v-else class="no-underline" href="javascript:void(0);" disabled>
{{ text }}
</a-button>
</a>
</template>
<template #status="status">

8
src/views/sheet/components/CustomSheetList.vue

@ -105,9 +105,9 @@
</a>
</a-tooltip>
<a-button v-else class="!p-0" disabled type="link">
<a v-else class="no-underline" href="javascript:void(0);" disabled>
{{ item.title }}
</a-button>
</a>
</div>
</template>
</a-list-item-meta>
@ -151,9 +151,9 @@
</a>
</a-tooltip>
<a-button v-else class="!p-0" disabled type="link">
<a v-else class="no-underline" href="javascript:void(0);" disabled>
{{ text }}
</a-button>
</a>
</template>
<template #status="status">

Loading…
Cancel
Save