diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-04-20 23:22:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 23:22:59 +0900 |
| commit | 11349561d697b11df7bcaa3d57ed3498eb4dd3c5 (patch) | |
| tree | 8dfe96ed7c9b695872b7d416383920355621d3c3 /src/client/components/taskmanager.vue | |
| parent | Tweak style (diff) | |
| download | sharkey-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/components/taskmanager.vue')
| -rw-r--r-- | src/client/components/taskmanager.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/components/taskmanager.vue b/src/client/components/taskmanager.vue index 1339e2e352..cb8cb78748 100644 --- a/src/client/components/taskmanager.vue +++ b/src/client/components/taskmanager.vue @@ -1,7 +1,7 @@ <template> <XWindow ref="window" :initial-width="650" :initial-height="420" :can-resize="true" @closed="$emit('closed')"> <template #header> - <Fa :icon="faTerminal" style="margin-right: 0.5em;"/>Task Manager + <i class="fas fa-terminal" style="margin-right: 0.5em;"></i>Task Manager </template> <div class="qljqmnzj _monospace"> <MkTab v-model:value="tab" style="border-bottom: solid 0.5px var(--divider);"> @@ -78,7 +78,6 @@ <script lang="ts"> import { defineComponent, markRaw, onBeforeUnmount, ref, shallowRef } from 'vue'; -import { faTerminal } from '@fortawesome/free-solid-svg-icons'; import XWindow from '@client/components/ui/window.vue'; import MkTab from '@client/components/tab.vue'; import MkButton from '@client/components/ui/button.vue'; @@ -139,7 +138,6 @@ export default defineComponent({ pools, killPopup, showReq, - faTerminal, }; }, }); |