Skip to content

Commit

Permalink
+ (CMS) Fixed Persisted Dataset Detail refresh interval unit save iss…
Browse files Browse the repository at this point in the history
…ue. (Fixes #5795)
  • Loading branch information
jonrob committed Mar 25, 2024
1 parent be02a86 commit bf47e3a
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,12 +311,17 @@
watch([...propRefs, selectedNamedSchedule], emitUpdate);

watch(() => isPersistenceEnabled.value, handlePersistenceToggle);

watch(() => intervalMinutes.value, () => {
if (typeOfPersistence.value === "Interval") {
refreshIntervalMinutes.value = intervalMinutes.value;
emitUpdate();
}
});

watch(() => typeOfInterval.value, () => {
emitUpdate();
});
// #endregion

// Initial setup
Expand All @@ -326,10 +331,7 @@
.sliderButtons {
display: flex;
justify-content: flex-end;
/* Align items to the end of the flex container */
align-items: center;
/* Vertically center items */
margin-top: 10px;
/* Add some space above the buttons */
}
</style>

0 comments on commit bf47e3a

Please sign in to comment.