Skip to content
Snippets Groups Projects

REDMINE_ISSUE-14531|Mode édition rapide - Bug lorsque le modérateur passe un ticket en brouillon

Merged REDMINE_ISSUE-14531|Mode édition rapide - Bug lorsque le modérateur passe un ticket en brouillon
Merged Timothee P requested to merge redmine-issues/14531 into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -264,7 +264,7 @@ export default {
]),
hasUnsavedChange() {
if (this.project.fast_edition_mode && this.form) {
if (this.project.fast_edition_mode && this.form && this.currentFeature) {
if (this.form.title !== this.currentFeature.title) return true;
if (this.form.description.value !== this.currentFeature.description) return true;
if (this.form.status.value !== this.currentFeature.status) return true;
Loading