Skip to content

Commit c7919e1

Browse files
authored
Merge pull request #867 from arun-s-aot/release/7.3.0
🚀 Release 7.3.0 change log updation
2 parents b28d78f + e51be9f commit c7919e1

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33
Mark items as `Added`, `Changed`, `Fixed`, `Modified`, `Removed`, `Untested Features`, `Upcoming Features`, `Known Issues`
44

5+
## 7.3.0 - 2025-10-14
6+
7+
`Added`
8+
9+
**forms-flow-submissions**
10+
11+
* Added bundle forms to the analyze-submissions filter list
12+
13+
`Modified`
14+
15+
**forms-flow-review**
16+
* Bundle review functionality moved to forms-flow-review from open source
17+
18+
**forms-flow-service**
19+
* Form.io token fetching logic has been moved to forms-flow-service
20+
21+
`Fixed`
22+
23+
**forms-flow-review**
24+
* Minor issues fixed in the reviewer page
25+
26+
**forms-flow-submissions**
27+
* Minor issues fixed in the analyze-submissions page
28+
29+
`Known Issues`
30+
31+
* Field-level search is not supported for bundle forms from the collapsible sidebar in analyze-submissions
32+
* Reviewer page does not support creating filters for bundle forms.
33+
534
## 7.2.0 - 2025-08-14
635

736
`Added`

forms-flow-submissions/src/Routes/SubmissionListing.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ import {
4747
import { MULTITENANCY_ENABLED } from "../constants";
4848
import ManageFieldsSortModal from "../components/Modals/ManageFieldsSortModal";
4949
import { SystemVariables } from "../constants/variables";
50+
import { setApplicationDetail } from "../actions/applicationActions";
5051

5152
interface Column {
5253
name: string;
@@ -549,9 +550,11 @@ return (
549550
<CustomButton
550551
actionTable
551552
label={t("View")}
552-
onClick={() =>
553+
onClick={() => {
554+
dispatch(setApplicationDetail({}))
553555
dispatch(push(`${redirectUrl}submissions/${submission.id}`))
554556
}
557+
}
555558
dataTestId={`view-submission-${submission.id}`}
556559
ariaLabel={t("View details for submission {{taskName}}", {
557560
taskName: submission.formName ?? t("unnamed"),

forms-flow-theme/scss/_table.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,9 @@ $white-color: var(--ff-white);
597597
}
598598
}
599599
}
600+
.bundle-table-height{
601+
height: 70vh !important;
602+
}
600603

601604

602605

0 commit comments

Comments
 (0)