mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
default value of path input are 2 empty strings
This commit is contained in:
parent
2182e9a54c
commit
7c44a9328f
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ class PathInput(InputEntity):
|
|||
self.with_arguments = self.schema_data.get("with_arguments", False)
|
||||
if self.with_arguments:
|
||||
self.valid_value_types = (list, )
|
||||
self.value_on_not_set = []
|
||||
self.value_on_not_set = ["", ""]
|
||||
else:
|
||||
self.valid_value_types = (str, )
|
||||
self.value_on_not_set = ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue