Skip to content

Commit

Permalink
Update trigger model to always drive a change event when changing the…
Browse files Browse the repository at this point in the history
… value. This allows IAMs to be re-evaluated even when setting a trigger to the same value. (#1925)
  • Loading branch information
brismithers authored and jinliu9508 committed Jan 31, 2024
1 parent c1a399c commit fc56400
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ class TriggerModel : Model() {
var value: Any
get() = getAnyProperty(::value.name) { "" }
set(value) {
setAnyProperty(::value.name, value)
setAnyProperty(::value.name, value, forceChange = true)
}
}

0 comments on commit fc56400

Please sign in to comment.