mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
style the box to only show lowercase chars, return slug in callback
This commit is contained in:
parent
2fb70a037d
commit
d12d5f94eb
2 changed files with 7 additions and 5 deletions
|
@ -288,6 +288,7 @@ module.exports.statusPageSocketHandler = (socket) => {
|
|||
ok: true,
|
||||
msg: "successAdded",
|
||||
msgi18n: true,
|
||||
slug: slug
|
||||
});
|
||||
|
||||
} catch (error) {
|
||||
|
|
|
@ -16,14 +16,11 @@
|
|||
<label for="slug" class="form-label">{{ $t("Slug") }}</label>
|
||||
<div class="input-group">
|
||||
<span id="basic-addon3" class="input-group-text">/status/</span>
|
||||
<input id="slug" v-model="slug" type="text" class="form-control" required data-testid="slug-input">
|
||||
<input id="slug" v-model="slug" type="text" class="form-control" autocapitalize="none" required data-testid="slug-input">
|
||||
</div>
|
||||
<div class="form-text">
|
||||
<ul>
|
||||
<li>{{ $t("Accept characters:") }} <mark>a-z</mark> <mark>0-9</mark> <mark>-</mark></li>
|
||||
<i18n-t tag="li" keypath="startOrEndWithOnly">
|
||||
<mark>a-z</mark> <mark>0-9</mark>
|
||||
</i18n-t>
|
||||
<li>{{ $t("No consecutive dashes") }} <mark>--</mark></li>
|
||||
<i18n-t tag="li" keypath="statusPageSpecialSlugDesc">
|
||||
<mark class="me-1">default</mark>
|
||||
|
@ -65,7 +62,7 @@ export default {
|
|||
this.processing = false;
|
||||
|
||||
if (res.ok) {
|
||||
location.href = "/status/" + this.slug + "?edit";
|
||||
location.href = "/status/" + res.slug + "?edit";
|
||||
} else {
|
||||
|
||||
if (res.msg.includes("UNIQUE constraint")) {
|
||||
|
@ -85,4 +82,8 @@ export default {
|
|||
.shadow-box {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#slug {
|
||||
text-transform: lowercase;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue