- 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:
@@ -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
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user