File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 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';
55export const IssueLabel = {
66 template : `
77<span class="gh-label" :class="className">
8- {{ name }}
8+ {{ name }}
99</span>` ,
1010 data ( ) {
1111 return {
@@ -43,7 +43,7 @@ export const IssueCard = {
4343 <i class="icon external-link has-color-forest-green"></i>
4444 </a>
4545 <div class="labels margin-top-small">
46- <IssueLabel
46+ <IssueLabel
4747 v-for="(name, index) in issue.labelNames"
4848 :key="index"
4949 :name="name"/>
@@ -73,21 +73,21 @@ export const App = {
7373 </label>
7474 <VueSelect
7575 v-model="filters.skills"
76- id="skills"
76+ id="skills"
7777 name="skills"
7878 placeholder="No preference"
7979 :options="options.skills"
8080 :reduce="skill => skill.toLocaleLowerCase()"
8181 :selectable="() => filters.skills.length < 3"
8282 multiple/>
83- <br/>
83+ <br/>
8484 <label for="experience">
8585 <strong>Experience</strong><br>
8686 Is this your first time contributing to CC?
8787 </label>
8888 <VueSelect
8989 v-model="filters.experience"
90- id="experience"
90+ id="experience"
9191 name="experience"
9292 :options="options.experiences"
9393 label="name"
@@ -98,7 +98,7 @@ export const App = {
9898 <div class="column">
9999 <template v-if="issues.length">
100100 <issue-card
101- v-for="issue in filteredIssues"
101+ v-for="issue in filteredIssues"
102102 :key="issue.id"
103103 :issue="issue"/>
104104 </template>
You can’t perform that action at this time.
0 commit comments