Skip to content

Commit

Permalink
Merge pull request #743 from MeasureAuthoringTool/MAT-8064_FixingIssu…
Browse files Browse the repository at this point in the history
…eInTestCaseList

Mat 8064 fixing issue in test case list
  • Loading branch information
gregory-akins authored Jan 15, 2025
2 parents 4f10854 + 7eed72a commit 5a6a453
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ const TestCaseList = (props: TestCaseListProps) => {
abortController.current = new AbortController();
const { ecqmTitle, model, version } = measure ?? {};
const testCaseIds: string[] = [];
if (selectedTestCases) {
if (selectedTestCases && selectedTestCases.size > 0) {
selectedTestCases.forEach((testCase) => {
testCaseIds.push(testCase.id);
});
Expand Down

0 comments on commit 5a6a453

Please sign in to comment.