mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: Change the order of notifications in the drop down
This commit is contained in:
parent
5f91919663
commit
97ef5d87c5
1 changed files with 1 additions and 1 deletions
|
@ -21,5 +21,5 @@ export function buttonDetails(level) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const allLevels = [ WATCHING, TRACKING, WATCHING_FIRST_POST, MUTED, REGULAR ].map(buttonDetails);
|
export const allLevels = [ WATCHING, TRACKING, WATCHING_FIRST_POST, REGULAR, MUTED ].map(buttonDetails);
|
||||||
export const topicLevels = allLevels.filter(l => l.id !== WATCHING_FIRST_POST);
|
export const topicLevels = allLevels.filter(l => l.id !== WATCHING_FIRST_POST);
|
||||||
|
|
Loading…
Reference in a new issue