fix deps list in rotation form (#3815)
# What this PR does Fix incorrect end date on creating weekly on-call shift ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3755 ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [ ] Documentation added (or `pr:no public docs` PR label added if not required) - [ ] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
This commit is contained in:
parent
1ece740030
commit
54b81e6dd8
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -284,7 +284,7 @@ const RotationForm = observer((props: RotationFormProps) => {
|
|||
}
|
||||
}
|
||||
},
|
||||
[showActiveOnSelectedPartOfDay, showActiveOnSelectedDays, repeatEveryValue]
|
||||
[showActiveOnSelectedPartOfDay, showActiveOnSelectedDays, repeatEveryValue, shiftStart]
|
||||
);
|
||||
|
||||
const handleRepeatEveryValueChange = (option) => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue