forked from FoundKeyGang/FoundKey
fix loading max emoji count when unlimited
This commit is contained in:
parent
bcb93aec14
commit
1e9e1e8b9c
1 changed files with 2 additions and 2 deletions
|
@ -148,11 +148,11 @@ const squareAvatars = computed(defaultStore.makeGetterSetter('squareAvatars'));
|
|||
For these two, the sliders go to 25, but 25 should be mapped to "unlimited".
|
||||
"Unlimited" is stored internally as 0 so the modulo is necessary.
|
||||
*/
|
||||
let maxCustomEmojiPicker = $ref(defaultStore.state.maxCustomEmojiPicker);
|
||||
let maxCustomEmojiPicker = $ref(defaultStore.state.maxCustomEmojiPicker || 25);
|
||||
watch($$(maxCustomEmojiPicker), () => {
|
||||
defaultStore.set('maxCustomEmojiPicker', maxCustomEmojiPicker % 25);
|
||||
});
|
||||
let maxUnicodeEmojiPicker = $ref(defaultStore.state.maxUnicodeEmojiPicker);
|
||||
let maxUnicodeEmojiPicker = $ref(defaultStore.state.maxUnicodeEmojiPicker || 25);
|
||||
watch($$(maxUnicodeEmojiPicker), () => {
|
||||
defaultStore.set('maxUnicodeEmojiPicker', maxUnicodeEmojiPicker % 25);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue