mirror of
https://codeberg.org/emersion/gamja.git
synced 2025-03-29 23:19:41 -04:00
Fix typo in Unread.union
This commit is contained in:
parent
06f7651bef
commit
558548e6f7
1 changed files with 2 additions and 2 deletions
4
state.js
4
state.js
|
@ -15,9 +15,9 @@ export const Unread = {
|
|||
MESSAGE: "message",
|
||||
HIGHLIGHT: "highlight",
|
||||
|
||||
union: (a, b) => {
|
||||
union(a, b) {
|
||||
const priority = {
|
||||
[Unread.None]: 0,
|
||||
[Unread.NONE]: 0,
|
||||
[Unread.MESSAGE]: 1,
|
||||
[Unread.HIGHLIGHT]: 2,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue