Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tablecolumn): remove typo in the props #727

Merged
merged 1 commit into from
Jan 8, 2024
Merged
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
10 changes: 5 additions & 5 deletions packages/oruga-next/src/components/table/TableColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const props = defineProps({
/** Column fixed width */
width: { type: [Number, String], default: undefined },
/** Define column value as number */
numeric: { type: Boolean, defaukt: false },
numeric: { type: Boolean, default: false },
/**
* Position of the column content
* @values left, centered, right
Expand All @@ -49,9 +49,9 @@ const props = defineProps({
["left", "centered", "right"].indexOf(value) > -1,
},
/** Enable an additional searchbar below the column header */
searchable: { type: Boolean, defaukt: false },
searchable: { type: Boolean, default: false },
/** Enable column sortability */
sortable: { type: Boolean, defaukt: false },
sortable: { type: Boolean, default: false },
/** Define whether the column is visible or not */
visible: { type: Boolean, default: true },
/** Define a custom sort function */
Expand All @@ -67,9 +67,9 @@ const props = defineProps({
default: undefined,
},
/** Whether the column is sticky or not */
sticky: { type: Boolean, defaukt: false },
sticky: { type: Boolean, default: false },
/** Make header selectable */
headerSelectable: { type: Boolean, defaukt: false },
headerSelectable: { type: Boolean, default: false },
/** Adds native attributes to th */
thAttrs: {
type: Function as PropType<(column: Column) => object>,
Expand Down