- Fixed pagination not refreshing the data...

- Start creating single page of an Event
This commit is contained in:
Paolo Arena
2019-11-06 22:28:45 +01:00
parent 571e948d39
commit 7fe6b5fb6a
16 changed files with 112 additions and 96 deletions

View File

@@ -61,6 +61,10 @@
color: red;
}
.isCalendar {
color: #fff241;
}
.isManager {
color: green;
}

View File

@@ -74,6 +74,9 @@ export default class MenuOne extends Vue {
if (elem.onlyManager)
menu += ' isManager'
if (elem.extraclass)
menu += ' ' + elem.extraclass
return menu
}
}