mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	 d88d0bdd80
			
		
	
	d88d0bdd80
	
	
	
		
			
			* feat: add avatar * chore: add more colors * chore: add helpers * chore: build prettier issues * chore: refactor shouldShowImage * chore: code cleanup * Update app/javascript/v3/components/Form/InitialsAvatar.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * chore: revire comments --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			267 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			267 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export const replaceRouteWithReload = url => {
 | |
|   window.location = url;
 | |
| };
 | |
| 
 | |
| export const userInitial = name => {
 | |
|   const parts = name.split(/[ -]/).filter(Boolean);
 | |
|   let initials = parts.map(part => part[0].toUpperCase()).join('');
 | |
|   return initials.slice(0, 2);
 | |
| };
 |