forked from open-webui/open-webui
		
	fix: share chat modal
This commit is contained in:
		
							parent
							
								
									000bea84ae
								
							
						
					
					
						commit
						bfd066cc2f
					
				
					 1 changed files with 10 additions and 6 deletions
				
			
		|  | @ -54,12 +54,16 @@ | |||
| 
 | ||||
| 	export let show = false; | ||||
| 
 | ||||
| 	onMount(async () => { | ||||
| 		chatId.subscribe(async (value) => { | ||||
| 			chat = await getChatById(localStorage.token, value); | ||||
| 			console.log(chat); | ||||
| 		}); | ||||
| 	}); | ||||
| 	$: if (show) { | ||||
| 		(async () => { | ||||
| 			if ($chatId) { | ||||
| 				chat = await getChatById(localStorage.token, $chatId); | ||||
| 			} else { | ||||
| 				chat = null; | ||||
| 				console.log(chat); | ||||
| 			} | ||||
| 		})(); | ||||
| 	} | ||||
| </script> | ||||
| 
 | ||||
| <Modal bind:show size="sm"> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek