formatting

This commit is contained in:
ThatOneCalculator 2023-04-17 01:03:56 -07:00
parent 07db141fc0
commit b32e1b56fa
No known key found for this signature in database
GPG key ID: 8703CACD01000000
4 changed files with 14 additions and 15 deletions

View file

@ -37,10 +37,11 @@ export const serverLogger = new Logger("server", "gray", false);
const app = new Koa();
app.proxy = true;
// Replace trailing slashes
// 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 || "")) {

View file

@ -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 =

View file

@ -34,15 +34,15 @@
<div class="status">
<div>
<p>{{ i18n.ts.notes }}</p>
<MkNumber :value="user.notesCount"/>
<MkNumber :value="user.notesCount" />
</div>
<div>
<p>{{ i18n.ts.following }}</p>
<MkNumber :value="user.followingCount"/>
<MkNumber :value="user.followingCount" />
</div>
<div>
<p>{{ i18n.ts.followers }}</p>
<MkNumber :value="user.followersCount"/>
<MkNumber :value="user.followersCount" />
</div>
</div>
<MkFollowButton

View file

@ -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'}