Fix accidental error

Changes to professions_total attribute should not be silent
This commit is contained in:
Vilem.Seda
2024-09-09 14:48:37 +02:00
parent 518e985b58
commit 25804a58cf
+1 -1
View File
@@ -3087,7 +3087,7 @@
let professionsTotal = professionLevels.reduce((a, b) => a + b, 0);
setAttrs({
professions_total: professionsTotal
}, {silent: true});
}, {silent: false});
});
}
});