Skip to content

Commit

Permalink
👻 remove reports that are unused (#1460)
Browse files Browse the repository at this point in the history
Resolves [mta-1345](https://issues.redhat.com/browse/MTA-1345)

Signed-off-by: ibolton336 <ibolton@redhat.com>
  • Loading branch information
ibolton336 authored Oct 11, 2023
1 parent cedcd28 commit 050e3c7
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 227 deletions.
3 changes: 2 additions & 1 deletion client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -216,14 +216,15 @@
"acceptedAppsAndDeps": "Accepted applications and dependencies",
"add": "Add",
"additionalNotesOrComments": "Additional notes or comments",
"adoptionCandidateDistribution": "Adoption candidate distribution",
"adoptionCandidateDistribution": "Assessment confidence and risk",
"affectedApplications": "Affected applications",
"analysis": "Analysis",
"answer": "Answer",
"application": "Application",
"application(s)": "Application(s)",
"applicationImports": "Application imports",
"applicationName": "Application name",
"archetypeName": "Archetype name",
"applications": "Applications",
"archetype": "Archetype",
"archetypes": "Archetypes",
Expand Down
1 change: 1 addition & 0 deletions client/src/app/api/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ export interface Assessment
description: string;
status: AssessmentStatus;
risk: Risk;
confidence?: number;
stakeholders?: Ref[];
stakeholderGroups?: Ref[];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon";
import { MultiInputSelection } from "./multi-input-selection";
import { Question, QuestionHeader, QuestionBody } from "./question";
import { getCommentFieldName } from "../../form-utils";
import { HookFormPFTextInput } from "@app/components/HookFormPFFields";
import { useFormContext } from "react-hook-form";
import { Section } from "@app/api/models";
import { AssessmentWizardValues } from "@app/pages/assessment/components/assessment-wizard/assessment-wizard";
Expand Down Expand Up @@ -87,7 +86,7 @@ export const QuestionnaireForm: React.FC<QuestionnaireFormProps> = ({
</StackItem>
);
})}
<StackItem>
{/* <StackItem>
<Question>
<QuestionHeader>
{t("terms.additionalNotesOrComments")}
Expand All @@ -104,7 +103,7 @@ export const QuestionnaireForm: React.FC<QuestionnaireFormProps> = ({
></HookFormPFTextInput>
</QuestionBody>
</Question>
</StackItem>
</StackItem> */}
</Stack>
);
};
Loading

0 comments on commit 050e3c7

Please sign in to comment.