mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Satisfy formatter
This commit is contained in:
parent
4cd60da7b8
commit
6ec721d550
2 changed files with 6 additions and 4 deletions
|
@ -56,7 +56,7 @@
|
||||||
if (event.code === "Enter") {
|
if (event.code === "Enter") {
|
||||||
$search = displayedSearch;
|
$search = displayedSearch;
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
const year = i18n.tr(i18n.TR.STATISTICS_RANGE_1_YEAR_HISTORY);
|
const year = i18n.tr(i18n.TR.STATISTICS_RANGE_1_YEAR_HISTORY);
|
||||||
const deck = i18n.tr(i18n.TR.STATISTICS_RANGE_DECK);
|
const deck = i18n.tr(i18n.TR.STATISTICS_RANGE_DECK);
|
||||||
|
|
|
@ -14,9 +14,11 @@
|
||||||
value: graphValue,
|
value: graphValue,
|
||||||
} = useAsyncReactive(() => getGraphData($search, $days), [search, days]);
|
} = useAsyncReactive(() => getGraphData($search, $days), [search, days]);
|
||||||
|
|
||||||
const { loading: prefsLoading, error: prefsError, value: prefsValue } = useAsync(
|
const {
|
||||||
() => getPreferences()
|
loading: prefsLoading,
|
||||||
);
|
error: prefsError,
|
||||||
|
value: prefsValue,
|
||||||
|
} = useAsync(() => getPreferences());
|
||||||
|
|
||||||
$: revlogRange = daysToRevlogRange($days);
|
$: revlogRange = daysToRevlogRange($days);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue