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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
340d0002
Commit
340d0002
authored
Jan 09, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable rule in modal.vue breaking tests
parent
ee90edae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
app/assets/javascripts/vue_shared/components/modal.vue
app/assets/javascripts/vue_shared/components/modal.vue
+3
-5
No files found.
app/assets/javascripts/vue_shared/components/modal.vue
View file @
340d0002
<
script
>
/* eslint-disable vue/require-default-prop */
export
default
{
name
:
'
Modal
'
,
...
...
@@ -6,17 +7,14 @@
id
:
{
type
:
String
,
required
:
false
,
default
:
''
,
},
title
:
{
type
:
String
,
required
:
false
,
default
:
''
,
},
text
:
{
type
:
String
,
required
:
false
,
default
:
''
,
},
hideFooter
:
{
type
:
Boolean
,
...
...
@@ -84,7 +82,7 @@
<div
:id=
"id"
class=
"modal"
:class=
"
id === ''
? '' : 'show'"
:class=
"
!id
? '' : 'show'"
role=
"dialog"
tabindex=
"-1"
>
...
...
@@ -147,7 +145,7 @@
</div>
</div>
<div
v-if=
"
id === ''
"
v-if=
"
!id
"
class=
"modal-backdrop fade in"
>
</div>
...
...
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