Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in vue file affecting plugin table format #2793

Merged
merged 2 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading