Skip to content

Commit 1ad068b

Browse files
authored
Merge branch 'main' into mta-1858
2 parents dec40fa + dc9ee3a commit 1ad068b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

client/src/app/pages/applications/applications-table/applications-table.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,7 @@ export const ApplicationsTable: React.FC = () => {
10151015
title: t("actions.delete"),
10161016
onClick: () =>
10171017
setApplicationsToDelete([application]),
1018+
isDisabled: application.migrationWave !== null,
10181019
},
10191020
{
10201021
title: t("actions.manageDependencies"),

client/src/app/pages/reports/components/application-landscape/application-landscape.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const aggregateRiskData = (
8787
red: high,
8888
unknown,
8989
unassessed,
90-
applicationsCount: processedAppIds.size,
90+
applicationsCount: applications.length,
9191
};
9292
};
9393

client/src/app/queries/questionnaires.ts

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ export const downloadQuestionnaire = async (
160160
delete yamlData.updateUser;
161161
delete yamlData.createTime;
162162
delete yamlData.id;
163+
delete yamlData.required;
163164

164165
const newYamlData = yaml.dump(yamlData);
165166

0 commit comments

Comments
 (0)