Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "bug",
"message": "Resolved an issue which prevented hour and minute values from persisting in the periodic trigger form.",
"issue_origin": "github",
"issue_number": null,
"domain": "automation",
"bullet_points": [],
"created_at": "2026-03-09"
}
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,12 @@ export default {
}
},
syncValuesFromUser() {
if (!this.syncedFromValues) {
// This function could have been called before the initial sync from `values`
// to `user` in mounted() has completed. In that case, we don't want to run
// this logic yet since `user` won't have the correct values yet.
return
}
this.v$.$touch()
if (this.v$.values.interval.$invalid) return
if (this.showMinuteFrequencyField && this.v$.user.minute.$invalid) return
Expand Down
Loading