diff options
| author | tusooa <tusooa@kazv.moe> | 2023-01-14 23:20:28 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-01-14 23:20:28 -0500 |
| commit | a58a6d3c357592f34007c67bbf7fdf740864212a (patch) | |
| tree | 2e2ac199dfc9b1f00b2acd998db3ea52196cc102 /src/components/attachment/attachment.vue | |
| parent | b4cbbefbd2dac62a0e334da43d1e076d4bef00a7 (diff) | |
Fix notification attachment icon overflow
Diffstat (limited to 'src/components/attachment/attachment.vue')
| -rw-r--r-- | src/components/attachment/attachment.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 2a89886d..79f62806 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -162,10 +162,11 @@ target="_blank" > <FAIcon - size="5x" + :size="compact ? '2x' : '5x'" :icon="placeholderIconClass" + :title="localDescription" /> - <p> + <p v-if="!compact"> {{ localDescription }} </p> </a> |
