Merge pull request #896 from hgiesel/defaultoff

Default CardCounts separate suspended/buried to on
This commit is contained in:
Damien Elmes 2021-01-06 21:05:59 +10:00 committed by GitHub
commit ae410fac24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
export let sourceData: pb.BackendProto.GraphsOut; export let sourceData: pb.BackendProto.GraphsOut;
export let i18n: I18n; export let i18n: I18n;
let separateInactive = false; let separateInactive = true;
let svg = null as HTMLElement | SVGElement | null; let svg = null as HTMLElement | SVGElement | null;
let bounds = defaultGraphBounds(); let bounds = defaultGraphBounds();

View File

@ -2,7 +2,7 @@
import type { I18n } from "anki/i18n"; import type { I18n } from "anki/i18n";
export let i18n: I18n; export let i18n: I18n;
export let separateInactive: boolean = false; export let separateInactive: boolean = true;
const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS); const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);
</script> </script>