Skip to content

Commit

Permalink
Merge pull request #96 from lsst/tickets/PREOPS-5288
Browse files Browse the repository at this point in the history
tickets/PREOPS-5288: Add hovertool giving visit data to visit map figures used in the pre-night briefing.
  • Loading branch information
ehneilsen authored Jul 16, 2024
2 parents 17f2e1d + 246a217 commit ce13c2a
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 211 deletions.
2 changes: 1 addition & 1 deletion schedview/app/scheduler_dashboard/scheduler_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def _update_scheduler_fname(self):
return

# Current fix for _conditions.mjd having different datatypes.
if type(self._conditions._mjd) == np.ndarray:
if isinstance(self._conditions._mjd, np.ndarray):
self._conditions._mjd = self._conditions._mjd[0]

# Get mjd from pickle and set widget and URL to match.
Expand Down
Loading

0 comments on commit ce13c2a

Please sign in to comment.