Enhance ESLint configuration to include support for .mjs and .cjs file types. Update ignored files patterns to ensure proper linting of project files. Refactor Vue component templates for improved readability and maintainability, including consistent formatting and structure across various components. Update error handling in save functions to prevent silent failures.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 52s
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 52s
This commit is contained in:
@@ -98,22 +98,44 @@
|
||||
|
||||
<!-- Sichtbarkeits-Einstellungen -->
|
||||
<div class="mt-4 border-t border-gray-100 pt-4">
|
||||
<h3 class="text-sm font-medium text-gray-900 mb-2">Sichtbarkeit für andere Mitglieder</h3>
|
||||
<h3 class="text-sm font-medium text-gray-900 mb-2">
|
||||
Sichtbarkeit für andere Mitglieder
|
||||
</h3>
|
||||
<div class="flex flex-col gap-2 text-sm text-gray-700">
|
||||
<label class="inline-flex items-center">
|
||||
<input type="checkbox" class="mr-2" v-model="visibility.showEmail" :disabled="isSaving" />
|
||||
<input
|
||||
v-model="visibility.showEmail"
|
||||
type="checkbox"
|
||||
class="mr-2"
|
||||
:disabled="isSaving"
|
||||
>
|
||||
E-Mail für alle eingeloggten Mitglieder sichtbar
|
||||
</label>
|
||||
<label class="inline-flex items-center">
|
||||
<input type="checkbox" class="mr-2" v-model="visibility.showPhone" :disabled="isSaving" />
|
||||
<input
|
||||
v-model="visibility.showPhone"
|
||||
type="checkbox"
|
||||
class="mr-2"
|
||||
:disabled="isSaving"
|
||||
>
|
||||
Telefonnummer für alle eingeloggten Mitglieder sichtbar
|
||||
</label>
|
||||
<label class="inline-flex items-center">
|
||||
<input type="checkbox" class="mr-2" v-model="visibility.showAddress" :disabled="isSaving" />
|
||||
<input
|
||||
v-model="visibility.showAddress"
|
||||
type="checkbox"
|
||||
class="mr-2"
|
||||
:disabled="isSaving"
|
||||
>
|
||||
Adresse für alle eingeloggten Mitglieder sichtbar
|
||||
</label>
|
||||
<label class="inline-flex items-center">
|
||||
<input type="checkbox" class="mr-2" v-model="visibility.showBirthday" :disabled="isSaving" />
|
||||
<input
|
||||
v-model="visibility.showBirthday"
|
||||
type="checkbox"
|
||||
class="mr-2"
|
||||
:disabled="isSaving"
|
||||
>
|
||||
Geburtstag für alle eingeloggten Mitglieder sichtbar
|
||||
</label>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user