CEC-5436: update default sorting of tables (#490)

* CEC-5436: add release_notes, update_duration, and max_attempts to manifest update form

* CEC-5436: reverse field order

* CEC-5436: sort vehicles by last updated

* CEC-5431: increase concurrency (#487)

* increase concurrency

* fix unmounted component leak
This commit is contained in:
Tristan Timblin
2023-12-13 10:26:33 -08:00
committed by GitHub
parent ec7607e733
commit d58369def6
7 changed files with 50 additions and 50 deletions

View File

@@ -112,7 +112,7 @@ const MainForm = () => {
const [pageSize, setPageSize] = useLocalStorage(PAGE_SIZE, 10);
const [pageIndex, setPageIndex] = useState(0);
const [orderBy, setOrderBy] = useState("id");
const [order, setOrder] = useState("asc");
const [order, setOrder] = useState("desc");
const [search, setSearch] = useLocalStorage("DEPLOYMENT_SEARCH", "");
const [active, setActive] = useLocalStorage("DEPLOYMENT_TAB_TOGGLE", "software");

View File

@@ -63,7 +63,7 @@ const MainForm = () => {
const [pageSize, setPageSize] = useLocalStorage(PAGE_SIZE, 10);
const [pageIndex, setPageIndex] = useState(0);
const [orderBy, setOrderBy] = useState("id");
const [order, setOrder] = useState("asc");
const [order, setOrder] = useState("desc");
const [ids, setIds] = useState([]);
const { getManifests, manifests } = useManifestsContext();
const {