From bf6aaa2a64977c4d95fd3fb579385673b6c7c999 Mon Sep 17 00:00:00 2001 From: Kyle Conroy Date: Wed, 10 Apr 2024 08:59:18 -0400 Subject: [PATCH] fix typo in vue file affecting plugin table format (#2793) --- CHANGES.rst | 2 ++ jdaviz/configs/default/plugins/export/export.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index aca4d263ae..655f3e0faa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -64,6 +64,8 @@ Other Changes and Additions Bug Fixes --------- +- Fix dropdown selection for table format in export plugin. [#2793] + Cubeviz ^^^^^^^ diff --git a/jdaviz/configs/default/plugins/export/export.py b/jdaviz/configs/default/plugins/export/export.py index 075b3820c1..094a70ea0b 100644 --- a/jdaviz/configs/default/plugins/export/export.py +++ b/jdaviz/configs/default/plugins/export/export.py @@ -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)