revert: removes expanded option, cards should always start minimized

This commit is contained in:
Lewis Wynne 2026-03-23 18:56:49 +00:00
parent a96acdd0d2
commit 973541e24f
7 changed files with 5 additions and 13 deletions

View file

@ -102,7 +102,6 @@ export function parseTemplate(xml: string, id: string): Template {
const records: RecordDef[] = root.record.map((r: any) => ({
type: r['@_type'],
expanded: r['@_expanded'] === 'true',
preamble: r.preamble?.trim(),
fields: r.field.map(parseField)
}));