Merge remote-tracking branch 'kamal/enhancements/snort#702'

This commit is contained in:
2024-01-11 09:38:50 +00:00
4 changed files with 31 additions and 2 deletions

View File

@ -96,6 +96,12 @@ export interface UserPreferences {
* Auto-translate when available
*/
autoTranslate?: boolean;
/**
* Hides muted notes when selected
*/
hideMutedNotes: boolean;
}
export const DefaultPreferences = {
@ -116,4 +122,5 @@ export const DefaultPreferences = {
showStatus: true,
checkSigs: true,
autoTranslate: true,
hideMutedNotes:false
} as UserPreferences;