diff options
| author | Henry Jameson <me@hjkos.com> | 2022-06-27 19:12:16 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-06-27 19:12:16 +0300 |
| commit | 9c9dc2053b68813f748bc7cd656987242f45158c (patch) | |
| tree | f833bc3560e741037e6f78b4037c37ef3a3aa5aa | |
| parent | 898b326f6c9da3ba26ad35b2349c2a3f9fc0484a (diff) | |
move tooltips setting
| -rw-r--r-- | src/components/settings_modal/tabs/general_tab.vue | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/src/components/settings_modal/tabs/general_tab.vue b/src/components/settings_modal/tabs/general_tab.vue index 5b4a126e..61416394 100644 --- a/src/components/settings_modal/tabs/general_tab.vue +++ b/src/components/settings_modal/tabs/general_tab.vue @@ -261,18 +261,14 @@ {{ $t('settings.mention_link_display') }} </ChoiceSetting> </li> - <ul - class="setting-list suboptions" - > - <li v-if="mentionLinkDisplay === 'short'"> - <BooleanSetting - path="mentionLinkShowTooltip" - expert="1" - > - {{ $t('settings.mention_link_use_tooltip') }} - </BooleanSetting> - </li> - </ul> + <li> + <BooleanSetting + path="mentionLinkShowTooltip" + expert="1" + > + {{ $t('settings.mention_link_use_tooltip') }} + </BooleanSetting> + </li> <li> <BooleanSetting path="useAtIcon" |
