refactor 'rows' -> 'data'

This commit is contained in:
Chris Kruining 2025-01-03 04:57:05 +01:00
parent 7f436227d9
commit d39f88a754
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
5 changed files with 15 additions and 16 deletions

View file

@ -71,7 +71,7 @@ export function Grid(props: { class?: string, rows: Entry[], locales: string[],
});
});
return <GridComp rows={rows()} columns={columns()} api={setApi} />;
return <GridComp data={rows()} columns={columns()} api={setApi} />;
};
const TextArea: Component<{ row: number, key: string, lang: string, value: string, oninput?: (event: InputEvent) => any }> = (props) => {