forked from open-webui/open-webui
		
	fix: unnecesary double loop
This commit is contained in:
		
							parent
							
								
									5745b9c5db
								
							
						
					
					
						commit
						30c94ff10f
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		|  | @ -191,10 +191,12 @@ | |||
| 						placeholder="Select a model" | ||||
| 					> | ||||
| 						<option value="" selected>Current Model</option> | ||||
| 						{#each $models.filter((m) => m.size != null) as model} | ||||
| 							<option value={model.name} class="bg-gray-100 dark:bg-gray-700" | ||||
| 								>{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'}</option | ||||
| 							> | ||||
| 						{#each $models as model} | ||||
| 							{#if model.size != null} | ||||
| 								<option value={model.name} class="bg-gray-100 dark:bg-gray-700"> | ||||
| 									{model.name + ' (' + (model.size / 1024 ** 3).toFixed(1) + ' GB)'} | ||||
| 								</option> | ||||
| 							{/if} | ||||
| 						{/each} | ||||
| 					</select> | ||||
| 				</div> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Carlos Daniel Vilaseca
						Carlos Daniel Vilaseca