File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ services:
144144
145145 orchestrator-ui :
146146 container_name : orchestrator-ui
147- image : " ghcr.io/workfloworchestrator/example-orchestrator-ui:2.14 .0" # TODO make it possible to override the tag
147+ image : " ghcr.io/workfloworchestrator/example-orchestrator-ui:3.4 .0" # TODO make it possible to override the tag
148148 env_file :
149149 - ./docker/orchestrator-ui/orchestrator-ui.env
150150 - path : ./docker/overrides/orchestrator-ui/orchestrator-ui.env
Original file line number Diff line number Diff line change 1- orchestrator-core == 2.8.0
1+ orchestrator-core == 4.0.4
22deepdiff == 8.0.1
33rich == 13.9.4
44pynetbox == 7.4.1
Original file line number Diff line number Diff line change 1919from orchestrator .workflows .utils import modify_workflow
2020from pydantic_forms .core import FormPage
2121from pydantic_forms .types import FormGenerator , State
22- from pydantic_forms .validators import Label , ReadOnlyField
22+ from pydantic_forms .validators import Label , read_only_field
2323
2424from products .product_types .port import Port , PortProvisioning
2525from products .services .description import description
@@ -36,10 +36,10 @@ class ModifyPortForm(FormPage):
3636
3737 port_settings : Label
3838
39- node_name : ReadOnlyField (port .node .node_name )
40- port_name : ReadOnlyField (port .port_name )
41- port_type : ReadOnlyField (port .port_type )
42- port_mode : ReadOnlyField (port .port_mode )
39+ node_name : read_only_field (port .node .node_name )
40+ port_name : read_only_field (port .port_name )
41+ port_type : read_only_field (port .port_type )
42+ port_mode : read_only_field (port .port_mode )
4343 port_description : str = port .port_description
4444 auto_negotiation : bool = port .auto_negotiation
4545 lldp : bool = port .lldp
You can’t perform that action at this time.
0 commit comments