Skip to content

Commit

Permalink
Manually pass attribute when subset is created
Browse files Browse the repository at this point in the history
  • Loading branch information
rosteen committed Jan 22, 2025
1 parent c3ef0b1 commit e7f3490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jdaviz/core/template_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ def __init__(self, plugin, items, selected, multiselect=None, selected_has_subre
self.hub.subscribe(self, SubsetUpdateMessage,
handler=lambda msg: self._update_subset(msg.subset, msg.attribute))
self.hub.subscribe(self, SubsetCreateMessage,
handler=lambda msg: self._update_subset(msg.subset))
handler=lambda msg: self._update_subset(msg.subset, attribute="type"))
self.hub.subscribe(self, SubsetDeleteMessage,
handler=lambda msg: self._delete_subset(msg.subset))
self.hub.subscribe(self, SubsetRenameMessage,
Expand Down

0 comments on commit e7f3490

Please sign in to comment.