diff options
Diffstat (limited to 'src/client/components/remote-caution.vue')
| -rw-r--r-- | src/client/components/remote-caution.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/components/remote-caution.vue b/src/client/components/remote-caution.vue index c9c5ceea4c..985ae44694 100644 --- a/src/client/components/remote-caution.vue +++ b/src/client/components/remote-caution.vue @@ -1,10 +1,9 @@ <template> -<div class="jmgmzlwq _block"><Fa :icon="faExclamationTriangle" style="margin-right: 8px;"/>{{ $ts.remoteUserCaution }}<a :href="href" rel="nofollow noopener" target="_blank">{{ $ts.showOnRemote }}</a></div> +<div class="jmgmzlwq _block"><i class="fas fa-exclamation-triangle" style="margin-right: 8px;"></i>{{ $ts.remoteUserCaution }}<a :href="href" rel="nofollow noopener" target="_blank">{{ $ts.showOnRemote }}</a></div> </template> <script lang="ts"> import { defineComponent } from 'vue'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import * as os from '@client/os'; export default defineComponent({ @@ -16,7 +15,6 @@ export default defineComponent({ }, data() { return { - faExclamationTriangle }; } }); |