Polish team role and login UI

This commit is contained in:
AzuTear
2026-06-25 20:14:47 +02:00
parent 3bf8b00a83
commit b7804e10ea
4 changed files with 18 additions and 4 deletions
+3 -3
View File
@@ -41,7 +41,7 @@ const {
selectedMember,
activeMembers,
pendingPasswordChanges,
roleOptions,
assignableRoleOptions,
hasRoleChanges,
startCreateMember,
startEditMember,
@@ -343,7 +343,7 @@ async function changeOwnPassword() {
</div>
<Button type="button" :disabled="saving || !hasRoleChanges" @click="saveRolePermissions">
<Save class="mr-2 h-4 w-4" />
Speicherbutton
Speichern
</Button>
</div>
@@ -433,7 +433,7 @@ async function changeOwnPassword() {
v-model="memberForm.role"
class="h-12 rounded-2xl border border-violet-100 bg-white px-4 text-base font-bold text-slate-900 outline-none transition focus:border-violet-300 focus:ring-4 focus:ring-violet-100"
>
<option v-for="role in roleOptions" :key="role.value" :value="role.value">
<option v-for="role in assignableRoleOptions" :key="role.value" :value="role.value">
{{ role.label }}
</option>
</select>