new changes done

This commit is contained in:
Eudes Inácio
2024-06-14 09:18:56 +01:00
parent 1a42c1cdce
commit b9c81f4cef
4 changed files with 29 additions and 17 deletions
+5 -5
View File
@@ -157,11 +157,11 @@ export class Utils {
eventRecurence(type) {
var selectedType = {
'never': 1,
'daily': 2,
'weekly': 3,
"monthly": 4,
"yearly": 5
'never': 0,
'daily': 1,
'weekly': 2,
"monthly": 3,
"yearly": 4
}
return selectedType[type];
}