Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Géocontrib Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GéoContrib
Géocontrib Frontend
Commits
34f427d7
Commit
34f427d7
authored
11 months ago
by
Timothee P
Browse files
Options
Downloads
Patches
Plain Diff
check for modification of assigned_member before leaving feature detail page in fast edition
parent
a05b2946
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!851
6.2.x
,
!849
v6.2.x <- REDMINE_ISSUE-21162 | Assignation d’un signalement à un utilisateur - envoi d’un mail de notification immédiat à la personnes assignée
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/views/Feature/FeatureDetail.vue
+1
-0
1 addition, 0 deletions
src/views/Feature/FeatureDetail.vue
with
1 addition
and
0 deletions
src/views/Feature/FeatureDetail.vue
+
1
−
0
View file @
34f427d7
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment