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
b6600129
Commit
b6600129
authored
Dec 06, 2018
by
jhampton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes linting error
- Fixes linting error around missing key directive
parent
9f5b99e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
app/assets/javascripts/jobs/components/trigger_block.vue
app/assets/javascripts/jobs/components/trigger_block.vue
+3
-9
No files found.
app/assets/javascripts/jobs/components/trigger_block.vue
View file @
b6600129
...
...
@@ -63,17 +63,11 @@ export default {
</p>
<table
class=
"js-build-variables trigger-build-variables"
>
<tr
v-for=
"variable in trigger.variables"
>
<td
:key=
"`$
{variable.key}-variable`"
class="js-build-variable trigger-build-variable trigger-variables-table-cell"
>
<tr
v-for=
"(variable, index) in trigger.variables"
:key=
"`$
{variable.key}-${index}`">
<td
class=
"js-build-variable trigger-build-variable trigger-variables-table-cell"
>
{{
variable
.
key
}}
</td>
<td
:key=
"`$
{variable.key}-value`"
class="js-build-value trigger-build-value trigger-variables-table-cell"
>
<td
class=
"js-build-value trigger-build-value trigger-variables-table-cell"
>
{{
getDisplayValue
(
variable
.
value
)
}}
</td>
</tr>
...
...
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