From c3321973a9ce619983ef99975dc5d620c992c6cb Mon Sep 17 00:00:00 2001 From: Maksim Nedoshev Date: Tue, 17 Oct 2023 11:32:14 +0300 Subject: [PATCH] chore: eslint fix --- .../src/components/va-checkbox/VaCheckbox.stories.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/ui/src/components/va-checkbox/VaCheckbox.stories.ts b/packages/ui/src/components/va-checkbox/VaCheckbox.stories.ts index a4b6860bd8..9675c5914f 100644 --- a/packages/ui/src/components/va-checkbox/VaCheckbox.stories.ts +++ b/packages/ui/src/components/va-checkbox/VaCheckbox.stories.ts @@ -4,7 +4,7 @@ import { VaButton } from '../va-button' export default { title: 'VaCheckbox', component: VaCheckbox, - tags:['autodocs'], + tags: ['autodocs'], } export const Default = () => ({ @@ -202,7 +202,7 @@ export const Success = () => ({ export const ArrayValue = () => ({ components: { VaCheckbox }, - data: () => ({ value: [ 'One', 'Two' ] }), + data: () => ({ value: ['One', 'Two'] }), template: ` ({ export const TrueValue = () => ({ components: { VaCheckbox }, - data: () => ({ value: "One" }), + data: () => ({ value: 'One' }), template: ` ({ export const FalseValue = () => ({ components: { VaCheckbox }, - data: () => ({ value: "One" }), + data: () => ({ value: 'One' }), template: ` ({ export const IndeterminateValue = () => ({ components: { VaCheckbox }, - data: () => ({ value: "One" }), + data: () => ({ value: 'One' }), template: ` ({ /> {{ value }} `, -}) \ No newline at end of file +})