Skip to content

Commit

Permalink
Fix default columns for radio input
Browse files Browse the repository at this point in the history
  • Loading branch information
distantnative committed Sep 23, 2024
1 parent daa4403 commit 07f2690
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion panel/src/components/Forms/Input/RadioInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ import { required as validateRequired } from "vuelidate/lib/validators";
export const props = {
mixins: [InputProps, options],
props: {
columns: Number,
columns: {
default: 1,
type: Number
},
reset: {
default: true,
type: Boolean
Expand Down

0 comments on commit 07f2690

Please sign in to comment.