Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
MAT-7936 reset execution status if new measure accessed
Browse files Browse the repository at this point in the history
  • Loading branch information
adongare committed Nov 22, 2024
1 parent a3811f7 commit c9e418b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/testCaseLanding/qdm/TestCaseList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ const TestCaseList = (props: TestCaseListProps) => {
useState<GroupCoverageResult>();
const [createOpen, setCreateOpen] = useState<boolean>(false);
useEffect(() => {
setExecuteAllTestCases(false);
if (
!_.isNil(measure?.groups) &&
measure.groups.length > 0 &&
Expand Down
1 change: 1 addition & 0 deletions src/components/testCaseLanding/qiCore/TestCaseList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ const TestCaseList = (props: TestCaseListProps) => {
}, [testCases]);

useEffect(() => {
setExecuteAllTestCases(false);
if (
!_.isNil(measure?.groups) &&
measure.groups.length > 0 &&
Expand Down

0 comments on commit c9e418b

Please sign in to comment.