Skip to content

Commit 5a975c8

Browse files
committed
Merge remote-tracking branch 'origin/dev' into dev
2 parents d2a3e45 + aae603e commit 5a975c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/search/search-bar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const SearchBar = (props: Props) => {
3333

3434
const placeholder = useMemo(() => placeholders[Math.floor(Math.random() * placeholders.length)], []);
3535
return (
36-
<div className="d-flex flex-row align-items-center">
36+
<div className="d-flex flex-row align-items-center gap-1">
3737
<input
3838
value={value}
3939
onChange={(e) => {
@@ -77,7 +77,7 @@ export const SearchBar = (props: Props) => {
7777
<option value={100}>Limit 100</option>
7878
</select>
7979
<button
80-
className="btn btn-primary ms-1"
80+
className="btn btn-primary"
8181
onClick={() => {
8282
if (value === '') {
8383
toast.error('Please enter a search term', {

0 commit comments

Comments
 (0)