Skip to content

Commit 36f456d

Browse files
committed
Correct visualization response schema
1 parent 5250794 commit 36f456d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/galaxy/schema/visualization.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -180,15 +180,15 @@ class VisualizationPluginResponse(Model):
180180
title="Entry Point",
181181
description="The entry point of the plugin.",
182182
)
183-
settings: List[Dict] = Field(
184-
...,
183+
settings: Optional[List[Dict]] = Field(
184+
None,
185185
title="Settings",
186186
description="The settings of the plugin.",
187187
)
188-
groups: Optional[List[Dict]] = Field(
188+
tracks: Optional[List[Dict]] = Field(
189189
None,
190-
title="Groups",
191-
description="The groups of the plugin.",
190+
title="Tracks",
191+
description="The tracks of the plugin.",
192192
)
193193
specs: Optional[Dict] = Field(
194194
None,

0 commit comments

Comments
 (0)