Fix: Addressed issue with status color not showing on Movie > Details (only purple was working)

This commit is contained in:
nitsua
2020-09-11 13:00:14 -04:00
committed by Qstick
parent 69071768de
commit 4fafdcabb7
6 changed files with 33 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
function firstCharToUpper(input) {
if (!input) {
return '';
}
return [].map.call(input, (char, i) => (i ? char : char.toUpperCase())).join('');
}
export default firstCharToUpper;