Skip to content

Commit

Permalink
Merge pull request #6699 from getkirby/fix/radio-input-columns
Browse files Browse the repository at this point in the history
Fix default columns for radio input
  • Loading branch information
bastianallgeier authored Sep 24, 2024
2 parents b9389d3 + 07f2690 commit 4b7a22c
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 4b7a22c

Please sign in to comment.