Inspection fixes
This commit is contained in:
parent
4886f9e955
commit
f4d489b474
@ -36,7 +36,6 @@
|
||||
import ChatMessage from "@/components/chat/ChatMessage.vue";
|
||||
import {ActionTypes} from "@/store/action-types";
|
||||
import ChatError from "@/errors/ChatError";
|
||||
import {MutationTypes} from "@/store/mutation-types";
|
||||
|
||||
export default defineComponent({
|
||||
components: {
|
||||
|
16
src/dynmap.d.ts
vendored
16
src/dynmap.d.ts
vendored
@ -66,22 +66,6 @@ interface DynmapMarkerUpdate {
|
||||
payload: LiveAtlasMarker,
|
||||
}
|
||||
|
||||
interface DynmapPointUpdate extends DynmapMarkerUpdate {
|
||||
payload?: LiveAtlasPointMarker
|
||||
}
|
||||
|
||||
interface DynmapAreaUpdate extends DynmapMarkerUpdate {
|
||||
payload?: LiveAtlasAreaMarker
|
||||
}
|
||||
|
||||
interface DynmapCircleUpdate extends DynmapMarkerUpdate {
|
||||
payload?: LiveAtlasCircleMarker
|
||||
}
|
||||
|
||||
interface DynmapLineUpdate extends DynmapMarkerUpdate {
|
||||
payload?: LiveAtlasLineMarker
|
||||
}
|
||||
|
||||
interface DynmapTileUpdate {
|
||||
name: string
|
||||
timestamp: number
|
||||
|
@ -93,6 +93,7 @@ export class LiveAtlasLayerControl extends Control.Layers {
|
||||
return this;
|
||||
}
|
||||
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
_initLayout() {
|
||||
const className = 'leaflet-control-layers',
|
||||
container = this._container = DomUtil.create('div', className),
|
||||
|
@ -16,7 +16,6 @@
|
||||
|
||||
import {Control, ControlOptions, DomEvent, DomUtil} from 'leaflet';
|
||||
import {useStore} from "@/store";
|
||||
import {MutationTypes} from "@/store/mutation-types";
|
||||
import {watch} from "@vue/runtime-core";
|
||||
|
||||
import "@/assets/icons/login.svg";
|
||||
|
@ -63,7 +63,7 @@ export default class OverviewerMapProvider extends MapProvider {
|
||||
}
|
||||
}
|
||||
|
||||
private static buildServerConfig(response: any): LiveAtlasServerConfig {
|
||||
private static buildServerConfig(ignore: any): LiveAtlasServerConfig {
|
||||
return {
|
||||
title: useStore().state.initialTitle,
|
||||
|
||||
@ -77,7 +77,7 @@ export default class OverviewerMapProvider extends MapProvider {
|
||||
};
|
||||
}
|
||||
|
||||
private static buildMessagesConfig(response: any): LiveAtlasServerMessageConfig {
|
||||
private static buildMessagesConfig(ignore: any): LiveAtlasServerMessageConfig {
|
||||
return {
|
||||
worldsHeading: 'Worlds',
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user