diff --git a/frontend/views/containers/dashboard/SentenceWithMemberTooltip.vue b/frontend/views/containers/dashboard/SentenceWithMemberTooltip.vue
index 773a757ada..c74cbb2436 100644
--- a/frontend/views/containers/dashboard/SentenceWithMemberTooltip.vue
+++ b/frontend/views/containers/dashboard/SentenceWithMemberTooltip.vue
@@ -1,48 +1,48 @@
-
-component(
- is='Tooltip'
- :key='members.length'
- :opacity='members.length === 0 ? 0 : 0.95'
- triggerElementSelector='.t-trigger'
- direction='bottom-right'
-)
- // The reason for using tag here instead of and specifying 'key' attr is,
- // to fix the bug where the link between the tooltip content(template(slot='tooltip') below) and the trigger target element(.t-trigger)
- // gets broken when "members" prop is updated. Tooltip gets destoryed and re-mounted in response to the prop change this way.
- slot
-
- template(v-if='members && members.length' slot='tooltip')
- .c-member-name(
- v-for='(name, index) in members'
- :key='`member-${index}`'
- )
- .has-ellipsis {{ name }}
-
-
-
-
-
+
+component(
+ is='Tooltip'
+ :key='members.length'
+ :opacity='members.length === 0 ? 0 : 0.95'
+ triggerElementSelector='.t-trigger'
+ direction='bottom'
+)
+ // The reason for using tag here instead of and specifying 'key' attr is,
+ // to fix the bug where the link between the tooltip content(template(slot='tooltip') below) and the trigger target element(.t-trigger)
+ // gets broken when "members" prop is updated. Tooltip gets destoryed and re-mounted in response to the prop change this way.
+ slot
+
+ template(v-if='members && members.length' slot='tooltip')
+ .c-member-name(
+ v-for='(name, index) in members'
+ :key='`member-${index}`'
+ )
+ .has-ellipsis {{ name }}
+
+
+
+
+