diff options
Diffstat (limited to 'settings/src')
-rw-r--r-- | settings/src/components/popoverMenu/popoverItem.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/src/components/popoverMenu/popoverItem.vue b/settings/src/components/popoverMenu/popoverItem.vue index dc4008a7e51..33f78f549a9 100644 --- a/settings/src/components/popoverMenu/popoverItem.vue +++ b/settings/src/components/popoverMenu/popoverItem.vue @@ -23,7 +23,7 @@ <template> <li> <!-- If item.href is set, a link will be directly used --> - <a @click="item.action" v-if="item.href" :href="(item.href) ? item.href : '#' "> + <a @click="item.action" v-if="item.href" :href="(item.href) ? item.href : '#' " :target="(item.target) ? item.target : '' " rel="noreferrer noopener"> <span :class="item.icon"></span> <span v-if="item.text">{{item.text}}</span> <p v-else-if="item.longtext">{{item.longtext}}</p> @@ -35,7 +35,7 @@ <p v-else-if="item.longtext">{{item.longtext}}</p> </button> <!-- If item.longtext is set AND the item does not have an action --> - <span v-else> + <span class="menuitem" v-else> <span :class="item.icon"></span> <span v-if="item.text">{{item.text}}</span> <p v-else-if="item.longtext">{{item.longtext}}</p> |