Skip to content

Commit

Permalink
chore: eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ksem committed Oct 17, 2023
1 parent dc0816c commit c332197
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/ui/src/components/va-checkbox/VaCheckbox.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { VaButton } from '../va-button'
export default {
title: 'VaCheckbox',
component: VaCheckbox,
tags:['autodocs'],
tags: ['autodocs'],
}

export const Default = () => ({
Expand Down Expand Up @@ -202,7 +202,7 @@ export const Success = () => ({

export const ArrayValue = () => ({
components: { VaCheckbox },
data: () => ({ value: [ 'One', 'Two' ] }),
data: () => ({ value: ['One', 'Two'] }),
template: `
<VaCheckbox
v-model="value"
Expand All @@ -225,7 +225,7 @@ export const ArrayValue = () => ({

export const TrueValue = () => ({
components: { VaCheckbox },
data: () => ({ value: "One" }),
data: () => ({ value: 'One' }),
template: `
<VaCheckbox
v-model="value"
Expand All @@ -237,7 +237,7 @@ export const TrueValue = () => ({

export const FalseValue = () => ({
components: { VaCheckbox },
data: () => ({ value: "One" }),
data: () => ({ value: 'One' }),
template: `
<VaCheckbox
v-model="value"
Expand All @@ -249,7 +249,7 @@ export const FalseValue = () => ({

export const IndeterminateValue = () => ({
components: { VaCheckbox },
data: () => ({ value: "One" }),
data: () => ({ value: 'One' }),
template: `
<VaCheckbox
v-model="value"
Expand All @@ -258,4 +258,4 @@ export const IndeterminateValue = () => ({
/>
{{ value }}
`,
})
})

0 comments on commit c332197

Please sign in to comment.