Skip to content

Commit

Permalink
Merge branch 'main' into mta-1858
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 authored Dec 12, 2023
2 parents dec40fa + dc9ee3a commit 1ad068b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,7 @@ export const ApplicationsTable: React.FC = () => {
title: t("actions.delete"),
onClick: () =>
setApplicationsToDelete([application]),
isDisabled: application.migrationWave !== null,
},
{
title: t("actions.manageDependencies"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const aggregateRiskData = (
red: high,
unknown,
unassessed,
applicationsCount: processedAppIds.size,
applicationsCount: applications.length,
};
};

Expand Down
1 change: 1 addition & 0 deletions client/src/app/queries/questionnaires.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export const downloadQuestionnaire = async (
delete yamlData.updateUser;
delete yamlData.createTime;
delete yamlData.id;
delete yamlData.required;

const newYamlData = yaml.dump(yamlData);

Expand Down

0 comments on commit 1ad068b

Please sign in to comment.