add clear cache to edu programs, fix relationships bugs

This commit is contained in:
F4ilji
2025-04-07 20:37:22 +05:00
parent 41b4642c9b
commit bf21022eda
11 changed files with 143 additions and 23 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class EducationForm {
}
static fromValue(value) {
return Object.values(this).find(item => item.value === value) || null;
return Object.values(this).find(item => item.value == value) || null;
}