mirror of https://github.com/bra1n/townsquare.git
fixed global reminders not showing up
This commit is contained in:
parent
12023ce80c
commit
85a7e259ea
|
@ -60,7 +60,7 @@ export default {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
// add global reminders
|
// add global reminders
|
||||||
else if (role.remindersGlobal && role.remindersGlobal.length) {
|
if (role.remindersGlobal && role.remindersGlobal.length) {
|
||||||
reminders = [
|
reminders = [
|
||||||
...reminders,
|
...reminders,
|
||||||
...role.remindersGlobal.map(name => ({
|
...role.remindersGlobal.map(name => ({
|
||||||
|
|
Loading…
Reference in New Issue