formatting
This commit is contained in:
parent
07db141fc0
commit
b32e1b56fa
|
@ -39,8 +39,9 @@ app.proxy = true;
|
|||
|
||||
// Replace trailing slashes
|
||||
app.use(async (ctx, next) => {
|
||||
if (ctx.request.path !== "/" && ctx.request.path.endsWith('/')) return ctx.redirect(ctx.request.path.replace(/\/$/, ""))
|
||||
else next()
|
||||
if (ctx.request.path !== "/" && ctx.request.path.endsWith("/"))
|
||||
return ctx.redirect(ctx.request.path.replace(/\/$/, ""));
|
||||
else next();
|
||||
});
|
||||
|
||||
if (!["production", "test"].includes(process.env.NODE_ENV || "")) {
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
<template>
|
||||
<div class="hpaizdrt" v-tooltip="capitalize(instance.softwareName)" ref="ticker" :style="bg">
|
||||
<div
|
||||
class="hpaizdrt"
|
||||
v-tooltip="capitalize(instance.softwareName)"
|
||||
ref="ticker"
|
||||
:style="bg"
|
||||
>
|
||||
<img class="icon" :src="getInstanceIcon(instance)" aria-hidden="true" />
|
||||
<span class="name">{{ instance.name }}</span>
|
||||
</div>
|
||||
|
@ -33,7 +38,7 @@ const instance = props.instance ?? {
|
|||
software: Instance.softwareName || "Calckey",
|
||||
};
|
||||
|
||||
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1)
|
||||
const capitalize = (s: string) => s && s[0].toUpperCase() + s.slice(1);
|
||||
|
||||
const computedStyle = getComputedStyle(document.documentElement);
|
||||
const themeColor =
|
||||
|
|
|
@ -236,9 +236,6 @@ importers:
|
|||
koa-mount:
|
||||
specifier: 4.0.0
|
||||
version: 4.0.0
|
||||
koa-remove-trailing-slashes:
|
||||
specifier: 2.0.3
|
||||
version: 2.0.3
|
||||
koa-send:
|
||||
specifier: 5.0.1
|
||||
version: 5.0.1
|
||||
|
@ -9861,10 +9858,6 @@ packages:
|
|||
- supports-color
|
||||
dev: false
|
||||
|
||||
/koa-remove-trailing-slashes@2.0.3:
|
||||
resolution: {integrity: sha512-NFFF9Sl1wxFo5h0I3OzrHDINdFPaqG+Hx19590F7PNOcmm7yYeFW71p4XicVuSovbcx75GWGb3fi6N6kI6E/3g==}
|
||||
dev: false
|
||||
|
||||
/koa-router@10.1.1:
|
||||
resolution: {integrity: sha512-z/OzxVjf5NyuNO3t9nJpx7e1oR3FSBAauiwXtMQu4ppcnuNZzTaQ4p21P8A6r2Es8uJJM339oc4oVW+qX7SqnQ==}
|
||||
engines: {node: '>= 8.0.0'}
|
||||
|
|
Loading…
Reference in New Issue