|
|
@ -85,7 +85,9 @@ export default {
|
|
|
|
model: null,
|
|
|
|
model: null,
|
|
|
|
processing: false,
|
|
|
|
processing: false,
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
|
notificationTypes: Object.keys(NotificationFormList).sort(),
|
|
|
|
notificationTypes: Object.keys(NotificationFormList).sort((a, b) => {
|
|
|
|
|
|
|
|
return a.toLowerCase().localeCompare(b.toLowerCase());
|
|
|
|
|
|
|
|
}),
|
|
|
|
notification: {
|
|
|
|
notification: {
|
|
|
|
name: "",
|
|
|
|
name: "",
|
|
|
|
/** @type { null | keyof NotificationFormList } */
|
|
|
|
/** @type { null | keyof NotificationFormList } */
|
|
|
|