From dcadd47569693a69161e6fd9a55ef2930dcd17fd Mon Sep 17 00:00:00 2001 From: Frank Niessink Date: Tue, 4 Feb 2025 17:37:51 +0100 Subject: [PATCH] Fix refresh of technical end date in UI. When changing technical debt with the option "Yes, and also set technical debt target and end date" or "No, and also clear technical debt target and end date", the technical end date value would not be refreshed in the UI. Fixes #10761. --- components/frontend/src/metric/MetricDebtParameters.jsx | 7 ++++++- docs/src/changelog.md | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/components/frontend/src/metric/MetricDebtParameters.jsx b/components/frontend/src/metric/MetricDebtParameters.jsx index a43eedf22c..e2242c9da9 100644 --- a/components/frontend/src/metric/MetricDebtParameters.jsx +++ b/components/frontend/src/metric/MetricDebtParameters.jsx @@ -105,7 +105,12 @@ export function MetricDebtParameters({ metric, metric_uuid, reload, report }) { /> - + diff --git a/docs/src/changelog.md b/docs/src/changelog.md index c4abe9b35e..80956097fb 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -23,6 +23,7 @@ If your currently installed *Quality-time* version is not the latest version, pl - Fix accessibility issues found by the application test. Fixes [#6354](https://github.com/ICTU/quality-time/issues/6354). - When adding multiple sources to one metric, the source names would not be comma-separated in the sources column. Fixes [#10735](https://github.com/ICTU/quality-time/issues/10735). - The comment field of a metric's technical debt tab would be editable even though the user was not logged in or when the user was time traveling. Note that the server would not save any changes made as it also checks for correct permissions. Fixes [#10739](https://github.com/ICTU/quality-time/issues/10739). +- When changing technical debt with the option "Yes, and also set technical debt target and end date" or "No, and also clear technical debt target and end date", the technical end date value would not be refreshed in the UI. Fixes [#10761](https://github.com/ICTU/quality-time/issues/10761). ### Changed