mirror of
https://github.com/discourse/discourse.git
synced 2025-06-15 12:22:39 +08:00
simplify time formats for set topic timer
This commit is contained in:
@ -110,9 +110,9 @@ export default Combobox.extend({
|
|||||||
|
|
||||||
if (time) {
|
if (time) {
|
||||||
if (state.id === LATER_TODAY) {
|
if (state.id === LATER_TODAY) {
|
||||||
time = time.format('hh:mm a');
|
time = time.format('h a');
|
||||||
} else {
|
} else {
|
||||||
time = time.format('ddd, hh:mm a');
|
time = time.format('ddd, h a');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user