navigation finished and debug menu in stats expanded

This commit is contained in:
Thomas Schleicher 2023-12-24 13:25:22 +01:00 committed by Jakob Stornig
parent 9706fc0a51
commit 6cf8fc29a2
3 changed files with 41 additions and 25 deletions

View file

@ -8,6 +8,7 @@ const useFetch = (query: Query) => {
const [data, setData] = useState<{[column: string]: any;}[]>([]);
const reFetch = () => {
setIsLoading(true);
executeQuery(query).then((result) => {
if("rows" in result[0]) {