Fix some linting issues

This commit is contained in:
Ramon Wenger 2023-04-06 17:11:53 +02:00
parent bec5924bb6
commit 10d70c2170
4 changed files with 12 additions and 9 deletions

View File

@ -1,5 +1,5 @@
{
"name": "Using fixtures to represent data",
"body": "Fixtures are a great way to mock data for responses to routes",
"email": "hello@cypress.io",
"body": "Fixtures are a great way to mock data for responses to routes"
"name": "Using fixtures to represent data"
}

View File

@ -1,11 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Components App</title>
</head>
<body>
<div data-cy-root></div>
</body>

View File

@ -1,6 +1,6 @@
import type { RadioItem } from "@/pages/learningPath/learningContentPage/feedback/feedback.types";
import type { Meta, StoryObj } from "@storybook/vue3";
import ItRadioGroup from "./ItRadioGroup.vue";
import type { RadioItem } from "@/pages/learningPath/learningContentPage/feedback/feedback.types";
const meta: Meta<typeof ItRadioGroup> = {
title: "VBV/RadioGroup",
@ -28,6 +28,8 @@ export const RadioGroup: Story = {
modelValue: modelValue,
items: items,
label: "Radiogroup",
"onUpdate:modelValue": (newValue) => { modelValue = newValue }
"onUpdate:modelValue": (newValue) => {
modelValue = newValue;
},
},
};