Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daniluk4000 committed Sep 8, 2024
1 parent 6ccf362 commit 63dda75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@
onUpdate: setTotalLabel,
}"
>
<template #point="{ state, onDelete }">
<template #point="{ state: pointState, onDelete }">
<div
class="point"
:class="{ 'point--last': state.index === state.totalCount - 1 }"
:class="{ 'point--last': pointState.index === pointState.totalCount - 1 }"
@click="($event.target as HTMLElement).classList.toggle('point--active')"
>
<div class="point_popup">
{{ getLabel(state) }}
{{ getLabel(pointState) }}

<div
class="point_popup_delete"
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-yandex-maps/src/namespace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Ref } from 'vue';
import type { OverloadParameters } from './types/overload-extract.ts';
import { safeComputed, safeRef } from './utils/system.ts';
import type { Apikeys } from '@yandex/ymaps3-types/imperative/config';
import type { YMapCarparksLayer, YMapPanoramaLayer, YMapTrafficEventsLayer, YMapTrafficLayer } from '@yandex/ymaps3-types/modules/layers-extra';
import type { YMapCarparksLayer } from '@yandex/ymaps3-types/modules/layers-extra';

export namespace VueYandexMaps {
export const settings: Ref<VueYandexMaps.PluginSettings> = safeRef({
Expand Down

0 comments on commit 63dda75

Please sign in to comment.