Skip to content

Commit fc7c0a8

Browse files
authored
Merge pull request creativecommons#540 from c99SRS/Issue-#518
Added disclaimer on the skill filter in the issue finder
2 parents d87e4f6 + 403a9b3 commit fc7c0a8

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

webpack/js/components.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const App = {
8585
<div class="column is-one-quarter">
8686
<form id="filters" v-if="options.skills.length">
8787
<label for="skills">
88-
<strong>Skill set</strong><br/>
88+
<strong>Skill set*</strong><br/>
8989
Choose up to three skills that you would like to see issues for.
9090
</label>
9191
<VueSelect
@@ -111,6 +111,12 @@ export const App = {
111111
:reduce="experience => experience.code"
112112
:clearable="false"/>
113113
</form>
114+
<p class="disclaimer">
115+
*Not all issues have skills marked on them, especially if they are
116+
simple issues that do not require proficiency in any specific
117+
framework or language. Those issues will not appear when filtering by
118+
skill.
119+
</p>
114120
<div v-else>
115121
Loading filters, please wait...
116122
</div>
@@ -129,6 +135,7 @@ export const App = {
129135
</p>
130136
</div>
131137
</div>
138+
132139
</div>`,
133140
components: {
134141
VueSelect,

webpack/sass/issue-finder-page.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,11 @@
1212
list-style: disc;
1313
padding-left: 2em;
1414
}
15+
16+
.disclaimer {
17+
@extend .margin-top-bigger;
18+
19+
font-size: smaller;
20+
}
1521
}
1622
}

0 commit comments

Comments
 (0)