aboutsummaryrefslogtreecommitdiff
path: root/src/components/global_notice_list
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-12-02 12:46:31 +0200
committerShpuld Shpuldson <shp@cock.li>2020-12-02 12:46:31 +0200
commit4dde9c4d529fb94b23b394aaa91e6a7cafd75777 (patch)
treeb6a81b565c27a28e62adbecfc3f6fa1c78eaf31e /src/components/global_notice_list
parent397622078fa313f710d61292212d4f53e7bc6527 (diff)
refactor error handling in profile tab
Diffstat (limited to 'src/components/global_notice_list')
-rw-r--r--src/components/global_notice_list/global_notice_list.vue12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/global_notice_list/global_notice_list.vue b/src/components/global_notice_list/global_notice_list.vue
index 8a33b9eb..0f5ac86f 100644
--- a/src/components/global_notice_list/global_notice_list.vue
+++ b/src/components/global_notice_list/global_notice_list.vue
@@ -9,11 +9,15 @@
<div class="notice-message">
{{ $t(notice.messageKey, notice.messageArgs) }}
</div>
- <FAIcon
- class="fa-scale-110 fa-old-padding"
- icon="times"
+ <button
+ class="button-unstyled"
@click="closeNotice(notice)"
- />
+ >
+ <FAIcon
+ class="fa-scale-110 fa-old-padding"
+ icon="times"
+ />
+ </button>
</div>
</div>
</template>