Skip to content

Commit 2da0b48

Browse files
authored
fix: Trailing line in Filter Dropdown Menus #7821 (argoproj#171)
1 parent 44a1a7f commit 2da0b48

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.autocomplete {
2+
&__items__item {
3+
&:last-child {
4+
border-bottom: none;
5+
}
6+
}
7+
}

src/components/autocomplete/autocomplete.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import * as classNames from 'classnames';
22
import * as React from 'react';
33
import * as ReactAutocomplete from 'react-autocomplete';
44

5+
require('./autocomplete.scss');
56
export interface AutocompleteApi {
67
refresh(): any;
78
}

0 commit comments

Comments
 (0)