diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-12 17:20:40 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-12 17:20:40 +0900 |
| commit | 922eb937ff928daacfaaa814a055552f238947fd (patch) | |
| tree | 9012974eb89e78e7c7453b7e23be934eb7c155ed /src | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | misskey-922eb937ff928daacfaaa814a055552f238947fd.tar.gz misskey-922eb937ff928daacfaaa814a055552f238947fd.tar.bz2 misskey-922eb937ff928daacfaaa814a055552f238947fd.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/admin/views/queue.vue | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/client/app/admin/views/queue.vue b/src/client/app/admin/views/queue.vue index a2d1cfcd2d..12110b48fa 100644 --- a/src/client/app/admin/views/queue.vue +++ b/src/client/app/admin/views/queue.vue @@ -1,9 +1,9 @@ <template> <div> <ui-card> - <template #title>{{ $t('operation') }}</template> + <template #title><fa :icon="faTasks"/> {{ $t('title') }}</template> <section class="wptihjuy"> - <header>Deliver</header> + <header><fa :icon="faPaperPlane"/> Deliver</header> <ui-horizon-group inputs v-if="latestStats" class="fit-bottom"> <ui-input :value="latestStats.deliver.waiting | number" type="text" readonly> <span>Waiting</span> @@ -18,7 +18,7 @@ <div ref="deliverChart" class="chart"></div> </section> <section class="wptihjuy"> - <header>Inbox</header> + <header><fa :icon="faInbox"/> Inbox</header> <ui-horizon-group inputs v-if="latestStats" class="fit-bottom"> <ui-input :value="latestStats.inbox.waiting | number" type="text" readonly> <span>Waiting</span> @@ -44,6 +44,8 @@ import Vue from 'vue'; import i18n from '../../i18n'; import ApexCharts from 'apexcharts'; import * as tinycolor from 'tinycolor2'; +import { faTasks, faInbox } from '@fortawesome/free-solid-svg-icons'; +import { faPaperPlane } from '@fortawesome/free-regular-svg-icons'; export default Vue.extend({ i18n: i18n('admin/views/queue.vue'), @@ -53,6 +55,7 @@ export default Vue.extend({ stats: [], deliverChart: null, inboxChart: null, + faTasks, faPaperPlane, faInbox }; }, |