Hi,
i’ve created this simple table which renders correctly.
view(Inputs.table(sql`SELECT unnest([1,2,3]) as col1`));
Chrome has issues with the table: (the affected node points to the selection check box)
A form field element has neither an
id
nor aname
attribute. This might prevent the browser from correctly autofilling the form.To fix this issue, add a unique
id
orname
attribute to a form field. This is not strictly needed, but still recommended even if you have an autocomplete attribute on the same element.
How do I set the ID correctly?
thanks.