We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e13fd6 commit 3080e1aCopy full SHA for 3080e1a
1 file changed
src/components/NcUserBubble/NcUserBubble.vue
@@ -249,9 +249,13 @@ export default {
249
},
250
251
isLinkComponent() {
252
- return this.hasUrl
253
- ? (this.to ? RouterLink : 'a')
254
- : 'div'
+ if (this.hasUrl) {
+ return 'a'
+ } else if (this.to) {
255
+ return RouterLink
256
+ } else {
257
+ return 'div'
258
+ }
259
260
261
popoverEmpty() {
@@ -339,8 +343,4 @@ export default {
339
343
padding-left: 4px;
340
344
}
341
345
342
-
-a.user-bubble__content {
- cursor: pointer;
-}
346
</style>
0 commit comments