Merge branch 'db' of github.com:logspace-ai/langflow into db

This commit is contained in:
gustavoschaedler 2023-06-16 21:19:55 +01:00
commit 69944b6e46
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ export default function BuildTrigger({
if(!allNodesValid) {
setErrorData({
title: "Oops! Looks like you missed something",
list: ["Check nodes and retry. Hover over 🔴 node for status."],
list: ["Check components and retry. Hover over component status icon 🔴 to inspect."],
});
}
} catch (error) {

View file

@ -16,7 +16,7 @@ export default function Chat({ flow }: ChatType) {
const handleKeyDown = (event: KeyboardEvent) => {
if (
(event.key === "K" || event.key === "k") &&
(event.metaKey || event.ctrlKey)
(event.metaKey || event.ctrlKey) && isBuilt
) {
event.preventDefault();
setOpen((oldState) => !oldState);
@ -26,7 +26,7 @@ export default function Chat({ flow }: ChatType) {
return () => {
document.removeEventListener("keydown", handleKeyDown);
};
}, []);
}, [isBuilt]);
useEffect(() => {
// Define an async function within the useEffect hook