Small cleanup

This commit is contained in:
James Lyne 2021-05-18 00:22:49 +01:00
parent 571534ca6e
commit a619c22c50
2 changed files with 2 additions and 3 deletions

View File

@ -17,8 +17,8 @@
<template>
<li :class="{'server': true, 'server--selected': server.id === currentServer}">
<button type="button" :class="{'active': server.id === currentServer}"
:title="server.label || server.id"
@click="setCurrentServer(server.id)">{{ server.label || server.id }}</button>
:title="server.label || server.id" @click="setCurrentServer(server.id)">{{ server.label || server.id }}
</button>
</li>
</template>

1
src/index.d.ts vendored
View File

@ -1,4 +1,3 @@
import { ComponentCustomProperties } from 'vue'
import {State, Store} from "@/store";
import {DynmapUrlConfig} from "@/dynmap";