Change order of place display options

This commit is contained in:
Przemek Więch
2026-06-24 23:18:04 +02:00
parent 1d80c07bf9
commit 9cb57d1f49
12 changed files with 42 additions and 14 deletions

View File

@@ -13,7 +13,7 @@ describe('loadFile', () => {
const {gedcom, images} = await loadFile(blob);
// File length may differ between Linux and Windows due to line endings (\n vs \r\n)
// So, check for a set of values instead of exactly one value
expect([4408, 4765]).toContain(gedcom.length);
expect([4549, 4909]).toContain(gedcom.length);
expect(images).toEqual(new Map());
});
@@ -24,7 +24,7 @@ describe('loadFile', () => {
});
const blob = new Blob([Buffer.from(file)]) as globalThis.Blob;
const {gedcom, images} = await loadFile(blob);
expect(gedcom.length).toBe(4408);
expect([4549, 4909]).toContain(gedcom.length);
expect(images.size).toBe(1);
});
});

View File

@@ -15,6 +15,9 @@
0 @I1@ INDI
1 NAME Bonifacy /Gibbs/
1 SEX M
1 BIRT
2 DATE 18 JUN 1970
2 PLAC Cyclone, Keating Township, McKean, Pennsylvania, United States
1 FAMC @F3@
1 FAMS @F1@
1 NOTE a random note
@@ -25,8 +28,8 @@
1 NAME Jarmila /Valenta/
1 SEX F
1 BIRT
2 DATE
2 PLAC
2 DATE 22 MAY 1975
2 PLAC Prague, Bohemia, Austria-Hungary
1 FAMC @F6@
1 FAMS @F1@
1 CHAN

View File

@@ -291,15 +291,15 @@ export function ConfigPanel(props: {
label={
<FormattedMessage
tagName="label"
id="config.places.FULL"
defaultMessage="full"
id="config.places.HIDE"
defaultMessage="hide"
/>
}
name="checkboxRadioGroup"
value="full"
checked={props.config.place === PlaceDisplay.FULL}
value="hide"
checked={props.config.place === PlaceDisplay.HIDE}
onClick={() =>
props.onChange({...props.config, place: PlaceDisplay.FULL})
props.onChange({...props.config, place: PlaceDisplay.HIDE})
}
/>
</Form.Field>
@@ -343,15 +343,15 @@ export function ConfigPanel(props: {
label={
<FormattedMessage
tagName="label"
id="config.places.HIDE"
defaultMessage="hide"
id="config.places.FULL"
defaultMessage="full"
/>
}
name="checkboxRadioGroup"
value="hide"
checked={props.config.place === PlaceDisplay.HIDE}
value="full"
checked={props.config.place === PlaceDisplay.FULL}
onClick={() =>
props.onChange({...props.config, place: PlaceDisplay.HIDE})
props.onChange({...props.config, place: PlaceDisplay.FULL})
}
/>
</Form.Field>