mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-29 00:56:37 +01:00
Fix: Addressed issue with status color not showing on Movie > Details (only purple was working)
This commit is contained in:
9
frontend/src/Utilities/String/firstCharToUpper.js
Normal file
9
frontend/src/Utilities/String/firstCharToUpper.js
Normal 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;
|
||||
Reference in New Issue
Block a user