Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/table/checkbox/checkbox.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ type Story = StoryObj<typeof meta>
*
* Importantly, since table cells apply padding by default, this padding should typically be disabled toto
* allow the checkbox to trully take up the maximum space possible. See
* [the No Padding story for Table.BodyCell](./?path=/docs/core-table-bodycell--nopadding) and
* [the No Padding story for Table.HeaderCell](./?path=/docs/core-table-headercell--nopadding) for
* [the No Padding story for Table.BodyCell](./?path=/story/core-table-bodycell--no-padding) and
* [the No Padding story for Table.HeaderCell](./?path=/story/core-table-headercell--no-padding) for
* examples on how to do this.
*/
export const Example: Story = {
Expand Down
4 changes: 2 additions & 2 deletions src/core/table/checkbox/checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export interface TableCellCheckboxProps extends Omit<InputHTMLAttributes<HTMLInp
*/
name?: string
/**
* The value that should be submitted with a form when the checkbox is checked. Will typically be
* the ID of the entity represented by the row this checkbox is a descendant of.
* The value that should be submitted with a form when the checkbox is checked. For row checkboxes, this
* will typically be the ID of the entity represented by the row this checkbox is a descendant of.
*/
value?: InputHTMLAttributes<HTMLInputElement>['value']
}
Expand Down
Loading