mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 05:25:15 +01:00 
			
		
		
		
	Fixes 96 typescript errors. Behaviour changes are commented below. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			378 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			378 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export function initSshKeyFormParser() {
 | 
						|
  // Parse SSH Key
 | 
						|
  document.querySelector('#ssh-key-content')?.addEventListener('input', function () {
 | 
						|
    const arrays = this.value.split(' ');
 | 
						|
    const title = document.querySelector<HTMLInputElement>('#ssh-key-title');
 | 
						|
    if (!title.value && arrays.length === 3 && arrays[2] !== '') {
 | 
						|
      title.value = arrays[2];
 | 
						|
    }
 | 
						|
  });
 | 
						|
}
 |