summaryrefslogtreecommitdiff
path: root/src/client/pages/instance/queue.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-20 23:22:59 +0900
committerGitHub <noreply@github.com>2021-04-20 23:22:59 +0900
commit11349561d697b11df7bcaa3d57ed3498eb4dd3c5 (patch)
tree8dfe96ed7c9b695872b7d416383920355621d3c3 /src/client/pages/instance/queue.vue
parentTweak style (diff)
downloadsharkey-11349561d697b11df7bcaa3d57ed3498eb4dd3c5.tar.gz
sharkey-11349561d697b11df7bcaa3d57ed3498eb4dd3c5.tar.bz2
sharkey-11349561d697b11df7bcaa3d57ed3498eb4dd3c5.zip
Use FontAwesome as web font instead of vue component (#7469)
* wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip
Diffstat (limited to 'src/client/pages/instance/queue.vue')
-rw-r--r--src/client/pages/instance/queue.vue11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/client/pages/instance/queue.vue b/src/client/pages/instance/queue.vue
index 249babcf41..0c1e0e51b5 100644
--- a/src/client/pages/instance/queue.vue
+++ b/src/client/pages/instance/queue.vue
@@ -1,14 +1,14 @@
<template>
<div>
<XQueue :connection="connection" domain="inbox">
- <template #title><Fa :icon="faExchangeAlt"/> In</template>
+ <template #title><i class="fas fa-exchange-alt"></i> In</template>
</XQueue>
<XQueue :connection="connection" domain="deliver">
- <template #title><Fa :icon="faExchangeAlt"/> Out</template>
+ <template #title><i class="fas fa-exchange-alt"></i> Out</template>
</XQueue>
<section class="_section">
<div class="_content">
- <MkButton @click="clear()"><Fa :icon="faTrashAlt"/> {{ $ts.clearQueue }}</MkButton>
+ <MkButton @click="clear()"><i class="fas fa-trash-alt"></i> {{ $ts.clearQueue }}</MkButton>
</div>
</section>
</div>
@@ -16,8 +16,6 @@
<script lang="ts">
import { defineComponent } from 'vue';
-import { faExchangeAlt } from '@fortawesome/free-solid-svg-icons';
-import { faTrashAlt } from '@fortawesome/free-regular-svg-icons';
import MkButton from '@client/components/ui/button.vue';
import XQueue from './queue.chart.vue';
import * as os from '@client/os';
@@ -33,10 +31,9 @@ export default defineComponent({
return {
[symbols.PAGE_INFO]: {
title: this.$ts.jobQueue,
- icon: faExchangeAlt,
+ icon: 'fas fa-exchange-alt',
},
connection: os.stream.useSharedConnection('queueStats'),
- faExchangeAlt, faTrashAlt
}
},