mirror of
				https://github.com/open-webui/open-webui
				synced 2025-06-26 18:26:48 +00:00 
			
		
		
		
	Merge pull request #11520 from icsy7867/main
Added decodeURIcomponent function to several locations.
This commit is contained in:
		
						commit
						0e7164b4f5
					
				| @ -210,7 +210,7 @@ | ||||
| 									{/if} | ||||
| 
 | ||||
| 									<div class="line-clamp-1"> | ||||
| 										{item?.name} | ||||
| 										{decodeURIComponent(item?.name)} | ||||
| 									</div> | ||||
| 								</div> | ||||
| 
 | ||||
|  | ||||
| @ -117,7 +117,7 @@ | ||||
| 						<div | ||||
| 							class="flex-1 mx-1 truncate text-black/60 hover:text-black dark:text-white/60 dark:hover:text-white transition" | ||||
| 						> | ||||
| 							{citation.source.name} | ||||
| 							{decodeURIComponent(citation.source.name)} | ||||
| 						</div> | ||||
| 					</button> | ||||
| 				{/each} | ||||
| @ -157,7 +157,7 @@ | ||||
| 											</div> | ||||
| 										{/if} | ||||
| 										<div class="flex-1 mx-1 truncate"> | ||||
| 											{citation.source.name} | ||||
| 											{decodeURIComponent(citation.source.name)} | ||||
| 										</div> | ||||
| 									</button> | ||||
| 								{/each} | ||||
| @ -194,7 +194,7 @@ | ||||
| 									</div> | ||||
| 								{/if} | ||||
| 								<div class="flex-1 mx-1 truncate"> | ||||
| 									{citation.source.name} | ||||
| 									{decodeURIComponent(citation.source.name)} | ||||
| 								</div> | ||||
| 							</button> | ||||
| 						{/each} | ||||
|  | ||||
| @ -98,7 +98,7 @@ | ||||
| 												: `#`} | ||||
| 										target="_blank" | ||||
| 									> | ||||
| 										{document?.metadata?.name ?? document.source.name} | ||||
| 										{decodeURIComponent(document?.metadata?.name) ?? decodeURIComponent(document.source.name)} | ||||
| 									</a> | ||||
| 									{#if document?.metadata?.page} | ||||
| 										<span class="text-xs text-gray-500 dark:text-gray-400"> | ||||
|  | ||||
| @ -82,7 +82,7 @@ | ||||
| 	{#if !small} | ||||
| 		<div class="flex flex-col justify-center -space-y-0.5 px-2.5 w-full"> | ||||
| 			<div class=" dark:text-gray-100 text-sm font-medium line-clamp-1 mb-1"> | ||||
| 				{name} | ||||
| 				{decodeURIComponent(name)} | ||||
| 			</div> | ||||
| 
 | ||||
| 			<div class=" flex justify-between text-gray-500 text-xs line-clamp-1"> | ||||
| @ -101,7 +101,7 @@ | ||||
| 			</div> | ||||
| 		</div> | ||||
| 	{:else} | ||||
| 		<Tooltip content={name} className="flex flex-col w-full" placement="top-start"> | ||||
| 		<Tooltip content={decodeURIComponent(name)} className="flex flex-col w-full" placement="top-start"> | ||||
| 			<div class="flex flex-col justify-center -space-y-0.5 px-2.5 w-full"> | ||||
| 				<div class=" dark:text-gray-100 text-sm flex justify-between items-center"> | ||||
| 					{#if loading} | ||||
| @ -109,7 +109,7 @@ | ||||
| 							<Spinner className="size-4" /> | ||||
| 						</div> | ||||
| 					{/if} | ||||
| 					<div class="font-medium line-clamp-1 flex-1">{name}</div> | ||||
| 					<div class="font-medium line-clamp-1 flex-1">{decodeURIComponent(name)}</div> | ||||
| 					<div class="text-gray-500 text-xs capitalize shrink-0">{formatFileSize(size)}</div> | ||||
| 				</div> | ||||
| 			</div> | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user