add app details modal, refactor showing username logic, handle modals&pages in case of errors from input params, replace change theme button and etc..

This commit is contained in:
Bekbolsun
2024-02-09 03:42:07 +06:00
parent 7aaea89f21
commit e4fdb7794a
29 changed files with 598 additions and 236 deletions

View File

@@ -127,3 +127,7 @@ export function getPermActionName(req: DbPerm) {
}
return action
}
export const isEmptyString = (str = '') => {
return str.trim().length === 0
}