aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_list_popover
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2020-10-19 22:35:46 +0300
committerHenry Jameson <me@hjkos.com>2020-10-20 20:28:11 +0300
commit8b3a7ae8c0fec5f79971745f64aeb3c5ac470894 (patch)
treeae18357e6bbccc6e92d1c463c08a130755d1a794 /src/components/user_list_popover
parent38142182774ea772aacc88f26586512d6279267f (diff)
more FA5 stuff with small related refactoring
Diffstat (limited to 'src/components/user_list_popover')
-rw-r--r--src/components/user_list_popover/user_list_popover.js6
-rw-r--r--src/components/user_list_popover/user_list_popover.vue2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/components/user_list_popover/user_list_popover.js b/src/components/user_list_popover/user_list_popover.js
index b60f2c4c..32ca2b8d 100644
--- a/src/components/user_list_popover/user_list_popover.js
+++ b/src/components/user_list_popover/user_list_popover.js
@@ -1,3 +1,9 @@
+import { library } from '@fortawesome/fontawesome-svg-core'
+import { faCircleNotch } from '@fortawesome/free-solid-svg-icons'
+
+library.add(
+ faCircleNotch
+)
const UserListPopover = {
name: 'UserListPopover',
diff --git a/src/components/user_list_popover/user_list_popover.vue b/src/components/user_list_popover/user_list_popover.vue
index 185c73ca..dd6977d2 100644
--- a/src/components/user_list_popover/user_list_popover.vue
+++ b/src/components/user_list_popover/user_list_popover.vue
@@ -31,7 +31,7 @@
</div>
</div>
<div v-else>
- <i class="icon-spin4 animate-spin" />
+ <FAIcon icon="circle-notch" spin size="3x"/>
</div>
</div>
</Popover>