Skip to content

Commit

Permalink
MRG: Merge pull request #32 from aerosense-ai/fix/fix-measurement-ses…
Browse files Browse the repository at this point in the history
…sions-typo

Fix incorrect column names in measurement session select update
  • Loading branch information
cortadocodes authored Jun 21, 2023
2 parents b2d0598 + 515026d commit ebd6282
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dashboard/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def update_measurement_session_selector(

measurement_sessions = [
f"{session[1][0]} to {session[1][1]}"
for session in measurement_sessions[["start_time", "end_time"]].iterrows()
for session in measurement_sessions[["start_datetime", "finish_datetime"]].iterrows()
]

if not measurement_sessions:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tool.poetry]
name = "aerosense-dashboard"
version = "0.6.0"
version = "0.6.1"
description = "High-level visualisation for aerosense"
authors = ["Tom Clark", "Marcus Lugg", "Yuriy Marykovsky"]
license = "BSD-3"
Expand Down

0 comments on commit ebd6282

Please sign in to comment.