Skip to content

Commit

Permalink
save intervention policy fix (#4760)
Browse files Browse the repository at this point in the history
Co-authored-by: Cole Blanchard <[email protected]>
  • Loading branch information
blanchco and Cole Blanchard authored Sep 11, 2024
1 parent c9bfec9 commit bb329ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const isSaveDisabled = computed(() => {
const hasSelectedPolicy = !!selectedPolicy.value;
// Check if the IDs of the transient and selected policies differ
const isPolicyIdDifferent = transientPolicyId !== selectedPolicyId.value?.id;
const isPolicyIdDifferent = transientPolicyId !== selectedPolicy.value?.id;
// Check if the policies themselves are equal
const arePoliciesEqual = isInterventionPoliciesEqual(transientPolicy, selectedPolicy.value);
Expand Down

0 comments on commit bb329ea

Please sign in to comment.