Added new setting to determine default display mode for tags

This commit is contained in:
Alejandro Celaya
2021-09-25 08:20:56 +02:00
parent 01f6f11ee2
commit 1da7119c5c
9 changed files with 84 additions and 28 deletions

View File

@@ -45,3 +45,5 @@ export type RecursivePartial<T> = {
};
export const nonEmptyValueOrNull = <T>(value: T): T | null => isEmpty(value) ? null : value;
export const capitalize = <T extends string>(value: T): string => `${value.charAt(0).toUpperCase()}${value.slice(1)}`;