+
@@ -49,7 +49,7 @@ export default {
tooltip: Tooltip
},
props: {
- sessions: {
+ users: {
type: Array,
default: () => { return {} }
}
@@ -60,8 +60,8 @@ export default {
}
},
computed: {
- sessionsVisible() {
- return this.sessions.slice(0, 3)
+ firstUsers() {
+ return this.users.slice(0, 3)
},
avatarUrl() {
return (session) => {
@@ -75,9 +75,9 @@ export default {
return window.location.protocol + '//' + window.location.host + avatarUrl
}
},
- sessionsPopover() {
+ popover() {
return [
- ...this.sessions.slice(3).map((session) => {
+ ...this.users.slice(3).map((session) => {
return {
href: '#',
icon: this.avatarUrl(session),
@@ -92,7 +92,8 @@ export default {
diff --git a/src/components/cards/CardBadges.vue b/src/components/cards/CardBadges.vue
index 9091eedd7..ee3b60029 100644
--- a/src/components/cards/CardBadges.vue
+++ b/src/components/cards/CardBadges.vue
@@ -36,7 +36,7 @@ cardbadges
-
+