Fixed group scope
Build and Publish / Build and Publish Docker Image (push) Successful in 5m2s

This commit is contained in:
Ultradesu
2026-07-30 23:29:38 +01:00
parent e890d1c147
commit 974b252637
6 changed files with 4 additions and 25 deletions
-6
View File
@@ -118,7 +118,6 @@
.telegram-copy { color: #53616c; line-height: 1.45; margin: 0; }
.form-stack { display: grid; gap: .8rem; }
.field-hint { margin: 0; color: #69777f; font-size: .82rem; line-height: 1.4; }
.warning-box { border: 1px solid #e5c76c; border-radius: 8px; background: #fff8df; color: #5f4911; padding: .7rem; font-size: .86rem; line-height: 1.4; }
.guide-list { margin: 0; padding-left: 1.2rem; color: #34424b; display: grid; gap: .45rem; line-height: 1.4; }
.guide-list a { color: #18342f; font-weight: 850; }
.guide-list a.disabled { color: #69777f; pointer-events: none; text-decoration: none; }
@@ -312,9 +311,6 @@
</datalist>
<p class="field-hint">{{ t.configs_group_hint }}</p>
</div>
<template x-if="clientModal.mode === 'group'">
<div class="warning-box">{{ t.configs_group_rotation_warning }}</div>
</template>
</div>
<div class="modal-actions">
<button type="button" class="secondary" @click="closeClientModal()">{{ t.admin_close }}</button>
@@ -777,8 +773,6 @@ function clientPortal() {
this.clientModal = null;
return;
}
if (!confirm('{{ t.configs_group_rotation_confirm }}')) return;
this.clearNotice();
this.busy = true;
try {
-7
View File
@@ -364,11 +364,6 @@
</datalist>
</div>
</div>
<template x-if="clientModal.mode === 'group'">
<div class="notice tone-warning">
<span>{{ t.configs_group_rotation_warning }}</span>
</div>
</template>
<div class="modal-actions">
<button class="secondary" @click="closeClientModal()">{{ t.admin_close }}</button>
<button @click="clientModal.mode === 'create' ? createClient() : changeClientGroup()" :disabled="busy">{{ t.settings_save }}</button>
@@ -842,8 +837,6 @@ function configsPage() {
this.clientModal = null;
return;
}
if (!confirm('{{ t.configs_group_rotation_confirm }}')) return;
this.clearNotice();
this.busy = true;
try {