Fixed ordering dropdown to be shorter in short URLs filter

This commit is contained in:
Alejandro Celaya
2022-05-14 14:15:21 +02:00
parent b4c3bd16b1
commit 30aeba0af2
5 changed files with 124 additions and 103 deletions

View File

@@ -85,7 +85,12 @@ const ShortUrlsFilteringBar = (
<ExportShortUrlsBtn amount={shortUrlsAmount} />
</div>
<div className="col-6 d-lg-none mt-3">
<OrderingDropdown items={SHORT_URLS_ORDERABLE_FIELDS} order={order} onChange={handleOrderBy} />
<OrderingDropdown
prefixed={false}
items={SHORT_URLS_ORDERABLE_FIELDS}
order={order}
onChange={handleOrderBy}
/>
</div>
</Row>
</div>