Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Mar 19, 2024
1 parent dabcf5f commit 7d846e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_user_api(specviz2d_helper):
pext.bg_sub_add_results = 'override label'
assert pext.bg_sub_add_results.label == 'override label'
pext.bg_sub_add_results.label = 'override label 2'
assert "override label 2" in pext.bg_sub_add_results.__repr__()
assert "override label 2" in pext.bg_sub_add_results._obj.__repr__()
assert "override label 2" in pext.bg_sub_add_results._obj.auto_label.__repr__()

pext.export_bg_sub(add_data=True)
Expand Down
2 changes: 1 addition & 1 deletion jdaviz/core/template_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2369,7 +2369,7 @@ class PluginTableSelect(SelectPluginComponent):
Example template (label and hint are optional)::
<plugin-table-select
<v-select
:items="table_items"
:selected.sync="table_selected"
label="Table"
Expand Down

0 comments on commit 7d846e4

Please sign in to comment.