Skip to content

Commit

Permalink
fix typo in vue file affecting plugin table format (#2793)
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry authored Apr 10, 2024
1 parent e76bb39 commit bf6aaa2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ Other Changes and Additions
Bug Fixes
---------

- Fix dropdown selection for table format in export plugin. [#2793]

Cubeviz
^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion jdaviz/configs/default/plugins/export/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self, *args, **kwargs):
# although not all support passing overwrite
plugin_table_format_options = ['ecsv', 'csv', 'fits']
self.plugin_table_format = SelectPluginComponent(self,
items='plugin-table_format_items',
items='plugin_table_format_items',
selected='plugin_table_format_selected',
manual_options=plugin_table_format_options)

Expand Down

0 comments on commit bf6aaa2

Please sign in to comment.