diff options
Diffstat (limited to 'src/client/components/abuse-report-window.vue')
| -rw-r--r-- | src/client/components/abuse-report-window.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/components/abuse-report-window.vue b/src/client/components/abuse-report-window.vue index df5b594c0b..d9e1c3966b 100644 --- a/src/client/components/abuse-report-window.vue +++ b/src/client/components/abuse-report-window.vue @@ -1,7 +1,7 @@ <template> <XWindow ref="window" :initial-width="400" :initial-height="500" :can-resize="true" @closed="$emit('closed')"> <template #header> - <Fa :icon="faExclamationCircle" style="margin-right: 0.5em;"/> + <i class="fas fa-exclamation-circle" style="margin-right: 0.5em;"></i> <I18n :src="$ts.reportAbuseOf" tag="span"> <template #name> <b><MkAcct :user="user"/></b> @@ -24,7 +24,6 @@ <script lang="ts"> import { defineComponent, markRaw } from 'vue'; -import { faExclamationCircle } from '@fortawesome/free-solid-svg-icons'; import XWindow from '@client/components/ui/window.vue'; import MkTextarea from '@client/components/ui/textarea.vue'; import MkButton from '@client/components/ui/button.vue'; @@ -53,7 +52,6 @@ export default defineComponent({ data() { return { comment: this.initialComment || '', - faExclamationCircle, }; }, |