Adjustments and fixes (#10346)

* Increase duration of alerts and detections

* Add key

* Fix cancel button

* Fix motion review when switching days

* Add reset buttons and make calendar apply immediately

* Adjust apis for motion and audio activity

* Write review thumbs as webp and reduce size
This commit is contained in:
Nicolas Mowen
2024-03-09 07:08:06 -07:00
committed by GitHub
parent eeb2187b97
commit 62d13024f6
7 changed files with 111 additions and 50 deletions

View File

@@ -44,6 +44,6 @@ export type ReviewSummary = {
export type MotionData = {
start_time: number;
motion: number;
audio: number;
motion?: number;
audio?: number;
};