🔒 chore(vectorstores.py): add password field to extra_fields in VectorStoreFrontendNode class

The password field is added to the extra_fields list in the VectorStoreFrontendNode class. This allows for the creation of a password input field in the frontend UI for this specific class.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-04 09:58:11 -03:00
commit 0cf94f37f6

View file

@ -143,6 +143,7 @@ class VectorStoreFrontendNode(FrontendNode):
show=True,
advanced=True,
multiline=False,
password=True,
value="",
)
extra_fields.extend((extra_field, extra_field2, extra_field3, extra_field4))