Add ability to hide summarized messages

This commit is contained in:
Webifi
2023-05-29 20:59:24 -05:00
parent 3bf3db6b07
commit e1fa2d9fde
5 changed files with 28 additions and 8 deletions

View File

@@ -12,7 +12,6 @@
export let checkStateChange = writable(0) // Trigger for Chat
export let showSetChatSettings = writable(false) //
const chatDefaults = getChatDefaults()
export const newChatID = (): number => {
@@ -312,7 +311,7 @@
export const setGlobalSettingValue = (setting: GlobalSetting, value) => {
const store = get(globalStorage)
store[setting.key] = cleanSettingValue(setting.type, value)
store[setting.key as any] = cleanSettingValue(setting.type, value)
globalStorage.set(store)
}