From 935135f9b6f5936b7fd26a76bf08b46abbe16ee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Austin=20John=20Mayer=20=28=E4=BA=95=E4=B8=8A=20=E3=82=AA?= =?UTF-8?q?=E3=83=BC=E3=82=B9=E3=83=86=E3=82=A3=E3=83=B3=29?= <95405354+tronicboy1@users.noreply.github.com> Date: Wed, 12 Apr 2023 10:58:39 +0900 Subject: [PATCH] fix lint errors --- src/compiler/compile/render_dom/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/compile/render_dom/index.ts b/src/compiler/compile/render_dom/index.ts index b993f803d2..d87eadfa0e 100644 --- a/src/compiler/compile/render_dom/index.ts +++ b/src/compiler/compile/render_dom/index.ts @@ -555,11 +555,11 @@ export default function dom( if (component.component_options.elementInternals) { declaration.body.body.push({ - type: "PropertyDefinition", + type: 'PropertyDefinition', static: true, computed: false, - key: { type: "Identifier", name: "formAssociated" }, - value: x`true`, + key: { type: 'Identifier', name: 'formAssociated' }, + value: x`true` }); }