diff --git a/CHANGELOG.md b/CHANGELOG.md index eec810b2..50533f3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Render alert group action buttons even if getting AG data fails ([#2383](https://github.com/grafana/oncall-private/issues/2383)) - Enable Grafana Alerting V2 feature flag by default +### Fixed + +- Incorrect end date on creating weekly on-call shift ([#3755](https://github.com/grafana/oncall/issues/3755)) + ## v1.3.98 (2024-02-01) ### Fixed diff --git a/grafana-plugin/src/containers/RotationForm/RotationForm.tsx b/grafana-plugin/src/containers/RotationForm/RotationForm.tsx index bcad0a8b..8458df61 100644 --- a/grafana-plugin/src/containers/RotationForm/RotationForm.tsx +++ b/grafana-plugin/src/containers/RotationForm/RotationForm.tsx @@ -284,7 +284,7 @@ const RotationForm = observer((props: RotationFormProps) => { } } }, - [showActiveOnSelectedPartOfDay, showActiveOnSelectedDays, repeatEveryValue] + [showActiveOnSelectedPartOfDay, showActiveOnSelectedDays, repeatEveryValue, shiftStart] ); const handleRepeatEveryValueChange = (option) => {