Skip to content

Commit

Permalink
fix: remove unnecessary div
Browse files Browse the repository at this point in the history
  • Loading branch information
OlkaB committed Jul 21, 2023
1 parent 55ab836 commit 65082ff
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/components/CvNumberInput/CvNumberInput.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,15 @@ Default.parameters = storyParametersObject(

const vModelHTML = `
<cv-number-input v-bind="args" v-model="modelValue" />
<div style="margin-top:1rem; background-color: #888888; padding:1rem"><div style="font-size: 150%">Sample interaction</div>
<input v-model="modelValue" type="number" />
<div>Entered value: <span style="font-weight: bold;">{{modelValue}}</span></div>
</div>
<div style="margin-top:1rem; background-color: #888888; padding:1rem">
<div style="font-size: 150%">
Sample interaction
</div>
<input v-model="modelValue" type="number" />
<div>
Entered value:
<span style="font-weight: bold;">{{modelValue}}</span>
</div>
</div>
`;

Expand Down

0 comments on commit 65082ff

Please sign in to comment.