Skip to content

Commit

Permalink
FIX: Fix incorrect column names in measurement session select update
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Jun 21, 2023
1 parent b2d0598 commit 515026d
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 515026d

Please sign in to comment.