Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
fix: recycle post title cannot be displayed in full (#537)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Wang <[email protected]>
  • Loading branch information
ruibaby authored Apr 6, 2022
1 parent 5ed960f commit e8146d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/components/Post/PostListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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">
Expand Down
8 changes: 4 additions & 4 deletions src/views/sheet/components/CustomSheetList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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">
Expand Down

0 comments on commit e8146d9

Please sign in to comment.