You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script>
import { createEventDispatcher, onMount } from 'svelte';
import handle from './index.js';
const dispatch = createEventDispatcher()
let active
export let pos
export let value
export let tip
function dragstart () {
active = true
dispatch('active', true)
}
function dragend () {
active = false
dispatch('active', false)
dispatch('dragEnd', value)
}
<script>
import {createEventDispatcher, onMount} from "svelte";
import handle from "./index.js";
const dispatch = createEventDispatcher();
let active;
export let pos;
export let value;
(...and more...)
You can see here that before the closing script tag the whole fixed part of the code got inserted a second time, instead of replacing the existing code!
The text was updated successfully, but these errors were encountered:
eslint --fix
on the fileBefore:
After:
You can see here that before the closing script tag the whole fixed part of the code got inserted a second time, instead of replacing the existing code!
The text was updated successfully, but these errors were encountered: