forked from Github/frigate
Add status bar provider (#11066)
This commit is contained in:
3
web/src/utils/stringUtil.ts
Normal file
3
web/src/utils/stringUtil.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export const capitalizeFirstLetter = (text: string): string => {
|
||||
return text.charAt(0).toUpperCase() + text.slice(1);
|
||||
};
|
||||
Reference in New Issue
Block a user