@ape.swap/bonds-sdk 1.0.486 → 1.0.487
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -240,7 +240,7 @@ var Bonds = function (_a) {
|
|
|
240
240
|
var handleInputChange = function (event) {
|
|
241
241
|
setInputValue(event.target.value);
|
|
242
242
|
};
|
|
243
|
-
var topTags = useTopTags(
|
|
243
|
+
var topTags = useTopTags(sortedBonds);
|
|
244
244
|
var filterOptions = __spreadArray(__spreadArray(['ALL'], topTags, true), ['SOLD OUT'], false);
|
|
245
245
|
var _l = useState(filterOptions[0]), filterOption = _l[0], setFilterOption = _l[1];
|
|
246
246
|
var handleChangeFilterOption = useCallback(function (newOption) {
|
|
@@ -5,17 +5,16 @@
|
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
width: 100%;
|
|
7
7
|
padding-top: 5px;
|
|
8
|
-
padding-left: 15px;
|
|
9
|
-
padding-right: 15px;
|
|
10
8
|
padding-bottom: 5px;
|
|
11
9
|
font-size: 11px;
|
|
12
|
-
color: #73728E;
|
|
13
10
|
}
|
|
14
11
|
|
|
15
12
|
.header-container.filters {
|
|
16
13
|
display: flex;
|
|
17
14
|
flex-direction: row;
|
|
18
15
|
align-items: center;
|
|
16
|
+
justify-content: end;
|
|
17
|
+
padding-bottom: 5px;
|
|
19
18
|
width: 100%;
|
|
20
19
|
}
|
|
21
20
|
|