Skip to content

Commit

Permalink
fix case of referenced image filename
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Dec 19, 2024
1 parent f915bf5 commit 53dcc7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jdaviz/configs/imviz/plugins/footprints/footprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def __init__(self, *args, **kwargs):
on_remove=self._on_overlay_remove)

if self.has_pysiaf:
obs_icons = {'JWST': read_icon(os.path.join(ICON_DIR, 'JWST_solid.svg'), 'svg+xml'),
'Roman': read_icon(os.path.join(ICON_DIR, 'Roman_solid.svg'), 'svg+xml')}
obs_icons = {'JWST': read_icon(os.path.join(ICON_DIR, 'jwst_solid.svg'), 'svg+xml'),
'Roman': read_icon(os.path.join(ICON_DIR, 'roman_solid.svg'), 'svg+xml')}
preset_options = [{'label': display_name,
'siaf_name': siaf_name,
'observatory': observatory,
Expand Down

0 comments on commit 53dcc7d

Please sign in to comment.