Skip to content

Commit

Permalink
fix(SILVA-567): fixing label (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj authored Nov 13, 2024
1 parent cd6289e commit 6d5ecce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ describe("AdvancedSearchDropdown", () => {
expect(screen.getByText("Timber mark")).toBeInTheDocument();
expect(screen.getByLabelText("Start Date")).toBeInTheDocument();
expect(screen.getByLabelText("End Date")).toBeInTheDocument();
expect(screen.getByText("Status (Select One)")).toBeInTheDocument();
expect(screen.getByText("Status")).toBeInTheDocument();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ const AdvancedSearchDropdown: React.FC<AdvancedSearchDropdownProps> = () => {
<Column lg={16}>
<CheckboxGroup
orientation="horizontal"
legendText="Status (Select One)"
legendText="Status"
>
<div className="d-flex flex-status-list">
<Checkbox
Expand Down

0 comments on commit 6d5ecce

Please sign in to comment.