Add quick filter for contribution kind

This commit is contained in:
2019-07-06 16:16:28 +02:00
parent abb7d95804
commit edd7ffd3c5
5 changed files with 42 additions and 14 deletions
+7
View File
@@ -0,0 +1,7 @@
import Helper from '@ember/component/helper';
export default Helper.extend({
compute([string]) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
});