Merge pull request #202 from ollama-webui/fix-edit-chat

fix: edit chat message
This commit is contained in:
Timothy Jaeryang Baek 2023-12-10 18:24:59 -05:00 committed by GitHub
commit 0656d4b1a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
import auto_render from 'katex/dist/contrib/auto-render.mjs';
import 'katex/dist/katex.min.css';
import { config, db, modelfiles, settings, user } from '$lib/stores';
import { chatId, config, db, modelfiles, settings, user } from '$lib/stores';
import { tick } from 'svelte';
import toast from 'svelte-french-toast';
@ -192,7 +192,7 @@
history.currentId = userMessageId;
await tick();
await sendPrompt(userPrompt, userMessageId);
await sendPrompt(userPrompt, userMessageId, $chatId);
};
const cancelEditMessage = (messageId) => {