mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Fix: Add missing 'const'
This commit is contained in:
		
							parent
							
								
									661abcfcdb
								
							
						
					
					
						commit
						b8905bbed9
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -122,7 +122,7 @@
 | 
				
			||||||
		this.onpaste = e => {
 | 
							this.onpaste = e => {
 | 
				
			||||||
			const data = e.clipboardData;
 | 
								const data = e.clipboardData;
 | 
				
			||||||
			const items = data.items;
 | 
								const items = data.items;
 | 
				
			||||||
			for (item of items) {
 | 
								for (const item of items) {
 | 
				
			||||||
				if (item.kind == 'file') {
 | 
									if (item.kind == 'file') {
 | 
				
			||||||
					this.upload(item.getAsFile());
 | 
										this.upload(item.getAsFile());
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue