FIX: Change the order of notifications in the drop down

This commit is contained in:
Robin Ward 2016-07-07 13:44:50 -04:00
parent 5f91919663
commit 97ef5d87c5

View File

@ -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);