Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
6d58f682
Commit
6d58f682
authored
Nov 05, 2020
by
Justin Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show confirmation modal on group-level save
parent
6afb91ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
app/assets/javascripts/integrations/edit/components/integration_form.vue
...scripts/integrations/edit/components/integration_form.vue
+6
-3
No files found.
app/assets/javascripts/integrations/edit/components/integration_form.vue
View file @
6d58f682
...
...
@@ -38,8 +38,11 @@ export default {
isJira
()
{
return
this
.
propsSource
.
type
===
'
jira
'
;
},
isInstanceLevel
()
{
return
this
.
propsSource
.
integrationLevel
===
integrationLevels
.
INSTANCE
;
isInstanceOrGroupLevel
()
{
return
(
this
.
propsSource
.
integrationLevel
===
integrationLevels
.
INSTANCE
||
this
.
propsSource
.
integrationLevel
===
integrationLevels
.
GROUP
);
},
showJiraIssuesFields
()
{
return
this
.
isJira
&&
this
.
glFeatures
.
jiraIssuesIntegration
;
...
...
@@ -91,7 +94,7 @@ export default {
v-bind="propsSource.jiraIssuesProps"
/>
<div
v-if=
"isEditable"
class=
"footer-block row-content-block"
>
<template
v-if=
"isInstanceLevel"
>
<template
v-if=
"isInstance
OrGroup
Level"
>
<gl-button
v-gl-modal
.
confirmSaveIntegration
category=
"primary"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment