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
3ab4b35e
Commit
3ab4b35e
authored
11 months ago
by
Timothee P
Browse files
Options
Downloads
Patches
Plain Diff
allow assigned_member deletion
parent
8032f249
No related branches found
No related tags found
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/store/modules/feature.store.js
+2
-1
2 additions, 1 deletion
src/store/modules/feature.store.js
with
2 additions
and
1 deletion
src/store/modules/feature.store.js
+
2
−
1
View file @
3ab4b35e
...
@@ -277,7 +277,8 @@ const feature = {
...
@@ -277,7 +277,8 @@ const feature = {
status
:
state
.
form
.
status
.
value
.
value
||
state
.
form
.
status
.
value
,
status
:
state
.
form
.
status
.
value
.
value
||
state
.
form
.
status
.
value
,
project
:
rootState
.
projects
.
project
.
slug
,
project
:
rootState
.
projects
.
project
.
slug
,
feature_type
:
rootState
[
'
feature-type
'
].
current_feature_type_slug
,
feature_type
:
rootState
[
'
feature-type
'
].
current_feature_type_slug
,
assigned_member
:
state
.
form
.
assigned_member
.
value
,
// if is undefined using null to allow sending empty field in order to delete previous assigned_member
assigned_member
:
state
.
form
.
assigned_member
.
value
?
state
.
form
.
assigned_member
.
value
:
null
,
...
extraFormObject
...
extraFormObject
}
}
};
};
...
...
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