diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-01-10 01:16:33 -0500 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-01-29 16:57:59 -0500 |
| commit | 1d4b1b296e8ee37f119f419df49791d99fef4774 (patch) | |
| tree | f2062ff46f28bb41a63802fef32184c9811d42de /src/components/settings_modal/tabs/general_tab.vue | |
| parent | 76547fe66d1771f5bff732a34b0547f890f4621a (diff) | |
Add pref for whether to display full user names and tooltips
Diffstat (limited to 'src/components/settings_modal/tabs/general_tab.vue')
| -rw-r--r-- | src/components/settings_modal/tabs/general_tab.vue | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/settings_modal/tabs/general_tab.vue b/src/components/settings_modal/tabs/general_tab.vue index 5fec2d89..8fce1eee 100644 --- a/src/components/settings_modal/tabs/general_tab.vue +++ b/src/components/settings_modal/tabs/general_tab.vue @@ -152,6 +152,25 @@ {{ $t('settings.use_at_icon') }} </BooleanSetting> </li> + <li> + <ChoiceSetting + id="mentionLinkDisplay" + path="mentionLinkDisplay" + :options="mentionLinkDisplayOptions" + > + {{ $t('settings.mention_link_display') }} + </ChoiceSetting> + </li> + <ul + v-if="mentionLinkDisplay === 'short'" + class="setting-list suboptions" + > + <li> + <BooleanSetting path="mentionLinkShowTooltip"> + {{ $t('settings.mention_link_show_tooltip') }} + </BooleanSetting> + </li> + </ul> </ul> </div> |
