- risolto problema della non attesa della PWA durante la chiamata a Node.js.

- risolto problema dell'ambiente in Locale HTTPS certificato installato aggiornato.
This commit is contained in:
Surya Paolo
2025-03-13 12:05:10 +01:00
parent 09d738f4e9
commit 404194b873
14 changed files with 379 additions and 573 deletions

View File

@@ -8289,18 +8289,18 @@ export const tools = {
return ''
},
getNameToShow(user: IUserFields, col: any = null): string {
getNameToShow(user: IUserFields, col: any = null, options = null): string {
const userStore = useUserStore()
const name = userStore.getNameToShow(user, col)
const name = userStore.getNameToShow(user, col, options)
return name
},
getUserNameOnlyIfToShow(user: IUserFields, col: any = null): string {
getUserNameOnlyIfToShow(user: IUserFields, col: any = null, options = null): string {
const userStore = useUserStore()
const name = userStore.getUserNameOnlyIfToShow(user, col)
const name = userStore.getUserNameOnlyIfToShow(user, col, options)
return name
},