Skip to content

Commit bad48f8

Browse files
Merge branch 'master' into khopek/PDSC-60-race-service-catalog-item
2 parents 2583838 + a692044 commit bad48f8

21 files changed

+565
-436
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [4.23.0](https://github.com/zendesk/copenhagen_theme/compare/v4.22.0...v4.23.0) (2025-12-04)
2+
3+
4+
### Features
5+
6+
* add approval request polling ([f8c9805](https://github.com/zendesk/copenhagen_theme/commit/f8c9805703a5718d2b2d3d9b181e5e79fb49dd0b))
7+
* post clarification comments and make stateful ([84ee762](https://github.com/zendesk/copenhagen_theme/commit/84ee762118513d316ff5fe498105363af25b5cdd))
8+
9+
# [4.22.0](https://github.com/zendesk/copenhagen_theme/compare/v4.21.0...v4.22.0) (2025-12-03)
10+
11+
12+
### Features
13+
14+
* updated CKEditor to the latest version and improved a11y ([0eda14d](https://github.com/zendesk/copenhagen_theme/commit/0eda14d5c920c8724bfef327292a65b5d1af56bd))
15+
116
# [4.21.0](https://github.com/zendesk/copenhagen_theme/compare/v4.20.0...v4.21.0) (2025-12-03)
217

318

assets/approval-requests-bundle.js

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/flash-notifications-bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/new-request-form-bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/service-catalog-bundle.js

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/shared-bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/wysiwyg-bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Copenhagen",
33
"author": "Zendesk",
4-
"version": "4.21.0",
4+
"version": "4.23.0",
55
"api_version": 4,
66
"default_locale": "en-us",
77
"settings": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"zcli": "zcli"
1717
},
1818
"dependencies": {
19-
"@zendesk/help-center-wysiwyg": "0.2.0",
19+
"@zendesk/help-center-wysiwyg": "1.0.1",
2020
"@zendeskgarden/container-grid": "^3.0.14",
2121
"@zendeskgarden/container-utilities": "^2.0.2",
2222
"@zendeskgarden/react-accordions": "9.12.0",

src/modules/approval-requests/ApprovalRequestPage.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,11 @@ function ApprovalRequestPage({
9595
setApprovalRequest,
9696
errorFetchingApprovalRequest: error,
9797
isLoading,
98-
} = useApprovalRequest(approvalWorkflowInstanceId, approvalRequestId);
98+
} = useApprovalRequest({
99+
approvalWorkflowInstanceId: approvalWorkflowInstanceId,
100+
approvalRequestId: approvalRequestId,
101+
enablePolling: true,
102+
});
99103

100104
const { hasUserViewedBefore, markUserViewed } = useUserViewedApprovalStatus({
101105
approvalRequestId: approvalRequest?.id,
@@ -171,6 +175,7 @@ function ApprovalRequestPage({
171175
{hasClarificationEnabled && (
172176
<ClarificationArea>
173177
<ClarificationContainer
178+
key={approvalRequest?.clarification_flow_messages?.length}
174179
approvalRequestId={approvalRequest.id}
175180
baseLocale={baseLocale}
176181
clarificationFlowMessages={

0 commit comments

Comments
 (0)