From e24ad0513b8bc0ede894565da34b5c1e21be8b90 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 29 Jun 2023 17:39:25 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(memories.py):=20set=20'url?= =?UTF-8?q?'=20field=20to=20be=20shown=20in=20the=20frontend=20The=20'url'?= =?UTF-8?q?=20field=20in=20the=20MemoryFrontendNode=20class=20is=20now=20s?= =?UTF-8?q?et=20to=20be=20shown=20in=20the=20frontend.=20This=20change=20a?= =?UTF-8?q?llows=20the=20'url'=20field=20to=20be=20visible=20and=20accessi?= =?UTF-8?q?ble=20to=20users=20in=20the=20frontend=20interface.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/template/frontend_node/memories.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backend/langflow/template/frontend_node/memories.py b/src/backend/langflow/template/frontend_node/memories.py index 936bdb8f4..6d9368823 100644 --- a/src/backend/langflow/template/frontend_node/memories.py +++ b/src/backend/langflow/template/frontend_node/memories.py @@ -75,6 +75,8 @@ class MemoryFrontendNode(FrontendNode): field.show = True field.advanced = False field.required = False + if field.name == "url": + field.show = True class PostgresChatMessageHistoryFrontendNode(MemoryFrontendNode):