From f83bd31fd5fee0bb2209ad0e5359ffa473ffb30e Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 19 Dec 2022 13:53:41 +0900 Subject: wip --- packages/client/src/ui/deck/column.vue | 4 ++-- packages/client/src/ui/deck/notifications-column.vue | 2 +- packages/client/src/ui/deck/tl-column.vue | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'packages/client/src/ui/deck') diff --git a/packages/client/src/ui/deck/column.vue b/packages/client/src/ui/deck/column.vue index d16c23d100..b841c1a629 100644 --- a/packages/client/src/ui/deck/column.vue +++ b/packages/client/src/ui/deck/column.vue @@ -105,7 +105,7 @@ function toggleActive() { function getMenu() { let items = [{ - icon: 'fas fa-cog', + icon: 'ti ti-settings', text: i18n.ts._deck.configureColumn, action: async () => { const { canceled, result } = await os.form(props.column.name, { @@ -170,7 +170,7 @@ function getMenu() { popRightColumn(props.column.id); }, } : undefined, null, { - icon: 'fas fa-trash-alt', + icon: 'ti ti-trash', text: i18n.ts.remove, danger: true, action: () => { diff --git a/packages/client/src/ui/deck/notifications-column.vue b/packages/client/src/ui/deck/notifications-column.vue index e77b849ef4..ef7eaff40d 100644 --- a/packages/client/src/ui/deck/notifications-column.vue +++ b/packages/client/src/ui/deck/notifications-column.vue @@ -1,6 +1,6 @@