Skip to content

Commit e70297a

Browse files
committed
Use specific colors for miscellaneous labels where available, falling back to white on black
1 parent a30731b commit e70297a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack/js/components.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const IssueLabel = {
2929
* @returns {string} the name of the class to apply to the label
3030
*/
3131
className() {
32-
return this.$root.categories[this.name] || 'miscellaneous'
32+
return this.$root.categories[this.name] || `${this.name.toLocaleLowerCase()} miscellaneous`
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)