File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import {octokit} from './octokit';
5
5
export const IssueLabel = {
6
6
template : `
7
7
<span class="gh-label" :class="className">
8
- {{ name }}
8
+ {{ name }}
9
9
</span>` ,
10
10
data ( ) {
11
11
return {
@@ -43,7 +43,7 @@ export const IssueCard = {
43
43
<i class="icon external-link has-color-forest-green"></i>
44
44
</a>
45
45
<div class="labels margin-top-small">
46
- <IssueLabel
46
+ <IssueLabel
47
47
v-for="(name, index) in issue.labelNames"
48
48
:key="index"
49
49
:name="name"/>
@@ -73,21 +73,21 @@ export const App = {
73
73
</label>
74
74
<VueSelect
75
75
v-model="filters.skills"
76
- id="skills"
76
+ id="skills"
77
77
name="skills"
78
78
placeholder="No preference"
79
79
:options="options.skills"
80
80
:reduce="skill => skill.toLocaleLowerCase()"
81
81
:selectable="() => filters.skills.length < 3"
82
82
multiple/>
83
- <br/>
83
+ <br/>
84
84
<label for="experience">
85
85
<strong>Experience</strong><br>
86
86
Is this your first time contributing to CC?
87
87
</label>
88
88
<VueSelect
89
89
v-model="filters.experience"
90
- id="experience"
90
+ id="experience"
91
91
name="experience"
92
92
:options="options.experiences"
93
93
label="name"
@@ -98,7 +98,7 @@ export const App = {
98
98
<div class="column">
99
99
<template v-if="issues.length">
100
100
<issue-card
101
- v-for="issue in filteredIssues"
101
+ v-for="issue in filteredIssues"
102
102
:key="issue.id"
103
103
:issue="issue"/>
104
104
</template>
You can’t perform that action at this time.
0 commit comments