Skip to content

Commit

Permalink
Merge pull request #488 from NBISweden/bug/validation-box-moves
Browse files Browse the repository at this point in the history
Bug of validationn box moving the iput because of missing space
  • Loading branch information
konere10 authored May 24, 2022
2 parents 45835f9 + 32021ff commit 683488c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/QuickAdd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const QuickAdd = ({
};

const getSearchClasses = () => {
let classes = "col-3 footer-field";
let classes = "col-3 footer-field ";
if (search != "") classes += issue ? "valid" : "invalid";
return classes;
};
Expand Down

0 comments on commit 683488c

Please sign in to comment.