Skip to content

Commit

Permalink
Hotfix (#231)
Browse files Browse the repository at this point in the history
Deactivate advanced fields until improved field processing.
  • Loading branch information
ogabrielluiz authored May 1, 2023
2 parents 007ebde + 163efc9 commit c20369e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "0.0.64"
version = "0.0.65"
description = "A Python package with a built-in web application"
authors = ["Logspace <[email protected]>"]
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion src/backend/langflow/template/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TemplateFieldCreator(BaseModel, ABC):
options: list[str] = []
name: str = ""
display_name: Optional[str] = None
advanced: bool = True
advanced: bool = False

def to_dict(self):
result = self.dict()
Expand Down

0 comments on commit c20369e

Please sign in to comment.