feat: hide reply count (#1439)
* feat: hide reply count * fix(i18n): rearrange strings * style: new line
This commit is contained in:
parent
75c4fa54d7
commit
d26510a766
4 changed files with 11 additions and 2 deletions
|
@ -9,6 +9,7 @@ export type ColorMode = 'light' | 'dark' | 'system'
|
|||
|
||||
export interface PreferencesSettings {
|
||||
hideBoostCount: boolean
|
||||
hideReplyCount: boolean
|
||||
hideFavoriteCount: boolean
|
||||
hideFollowerCount: boolean
|
||||
hideTranslation: boolean
|
||||
|
@ -62,6 +63,7 @@ export function getDefaultUserSettings(locales: string[]): UserSettings {
|
|||
|
||||
export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
|
||||
hideBoostCount: false,
|
||||
hideReplyCount: false,
|
||||
hideFavoriteCount: false,
|
||||
hideFollowerCount: false,
|
||||
hideTranslation: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue