Skip to content
Snippets Groups Projects
Commit 34f427d7 authored by Timothee P's avatar Timothee P :sunflower:
Browse files

check for modification of assigned_member before leaving feature detail page in fast edition

parent a05b2946
No related branches found
No related tags found
2 merge requests!8516.2.x,!849v6.2.x <- REDMINE_ISSUE-21162 | Assignation d’un signalement à un utilisateur - envoi d’un mail de notification immédiat à la personnes assignée
......@@ -284,6 +284,7 @@ export default {
if (this.form.title !== this.currentFeature.properties.title) return true;
if (this.form.description.value !== this.currentFeature.properties.description) return true;
if (this.form.status.value !== this.currentFeature.properties.status) return true;
if (this.form.assigned_member.value !== this.currentFeature.properties.assigned_member) return true;
// Iterate over extra forms to check for any changes.
for (const xForm of this.$store.state.feature.extra_forms) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment