Skip to content

Commit

Permalink
add prop for label size
Browse files Browse the repository at this point in the history
  • Loading branch information
srimanachanta committed Jun 4, 2023
1 parent 9ea0adf commit 7442dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions photon-client/src/components/common/cv-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
dense
align="center"
>
<v-col :cols="12 - (inputCols || 8)">
<v-col :cols="labelCols || (12 - (inputCols || 8))">
<tooltipped-label
:tooltip="tooltip"
:text="name"
Expand Down Expand Up @@ -36,7 +36,7 @@
TooltippedLabel
},
// eslint-disable-next-line vue/require-prop-types
props: ['name', 'value', 'disabled', 'errorMessage', 'inputCols', 'rules', 'tooltip'],
props: ['name', 'value', 'disabled', 'errorMessage', 'inputCols', 'labelCols', 'rules', 'tooltip'],
data() {
return {}
},
Expand Down

0 comments on commit 7442dd6

Please sign in to comment.