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
3ea65bae
Commit
3ea65bae
authored
Jan 09, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix application row specs
parent
e28e1f42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
app/assets/javascripts/clusters/components/application_row.vue
...ssets/javascripts/clusters/components/application_row.vue
+7
-7
No files found.
app/assets/javascripts/clusters/components/application_row.vue
View file @
3ea65bae
...
...
@@ -30,7 +30,7 @@
titleLink
:
{
type
:
String
,
required
:
false
,
default
:
''
,
default
:
null
,
},
description
:
{
type
:
String
,
...
...
@@ -44,7 +44,7 @@
statusReason
:
{
type
:
String
,
required
:
false
,
default
:
''
,
default
:
null
,
},
requestStatus
:
{
type
:
String
,
...
...
@@ -54,7 +54,7 @@
requestReason
:
{
type
:
String
,
required
:
false
,
default
:
''
,
default
:
null
,
},
},
computed
:
{
...
...
@@ -123,7 +123,7 @@
role=
"row"
>
<a
v-if=
"titleLink
!== ''
"
v-if=
"titleLink"
:href=
"titleLink"
target=
"blank"
rel=
"noopener noreferrer"
...
...
@@ -172,15 +172,15 @@
<p
class=
"js-cluster-application-general-error-message"
>
{{
generalErrorDescription
}}
</p>
<ul
v-if=
"statusReason
!== '' || requestReason !== ''
"
>
<ul
v-if=
"statusReason
|| requestReason
"
>
<li
v-if=
"statusReason
!== ''
"
v-if=
"statusReason"
class=
"js-cluster-application-status-error-message"
>
{{
statusReason
}}
</li>
<li
v-if=
"requestReaso
n !== ''
"
v-if=
"requestReaso"
class=
"js-cluster-application-request-error-message"
>
{{
requestReason
}}
...
...
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