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
9e7db23c
Commit
9e7db23c
authored
Apr 07, 2021
by
Paul Gascou-Vaillancourt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unnecessary state property
parent
831c2fd1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
app/assets/javascripts/pipeline_editor/pipeline_editor_app.vue
...ssets/javascripts/pipeline_editor/pipeline_editor_app.vue
+2
-6
No files found.
app/assets/javascripts/pipeline_editor/pipeline_editor_app.vue
View file @
9e7db23c
...
...
@@ -59,7 +59,6 @@ export default {
showSuccessAlert
:
false
,
successType
:
null
,
codeSnippetCopiedFrom
:
''
,
codeSnippetAlertDismissed
:
false
,
};
},
...
...
@@ -176,9 +175,6 @@ export default {
return
null
;
}
},
showCodeSnippetAlert
()
{
return
this
.
codeSnippetCopiedFrom
&&
!
this
.
codeSnippetAlertDismissed
;
},
},
i18n
:
{
tabEdit
:
s__
(
'
Pipelines|Write pipeline configuration
'
),
...
...
@@ -291,10 +287,10 @@ export default {
/>
<div
v-else
>
<code-snippet-alert
v-if=
"
showCodeSnippetAlert
"
v-if=
"
codeSnippetCopiedFrom
"
:source=
"codeSnippetCopiedFrom"
class=
"gl-mb-5"
@
dismiss=
"codeSnippet
AlertDismissed = true
"
@
dismiss=
"codeSnippet
CopiedFrom = ''
"
/>
<gl-alert
v-if=
"showSuccessAlert"
...
...
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