patches v1.7.5 #120

Merged
jkeffects merged 7 commits from develop into main 2025-07-24 06:56:47 +00:00
3 changed files with 6 additions and 5 deletions
Showing only changes of commit 89bc0f9373 - Show all commits

View file

@ -49,7 +49,8 @@ export const useMembershipStore = defineStore("membership", {
http http
.get(`/admin/member/${memberId}/memberships/totalstatistics`) .get(`/admin/member/${memberId}/memberships/totalstatistics`)
.then((result) => { .then((result) => {
this.totalMembershipStatistics = result.data; if (result.status == 200) this.totalMembershipStatistics = result.data;
else this.totalMembershipStatistics = undefined;
}) })
.catch((err) => {}); .catch((err) => {});
}, },

View file

@ -24,7 +24,7 @@
type="text" type="text"
name="title" name="title"
id="title" id="title"
placeholder="Entscheidung" placeholder="Beschluss"
autocomplete="off" autocomplete="off"
v-model="item.topic" v-model="item.topic"
@keyup.prevent @keyup.prevent
@ -57,7 +57,7 @@
<QuillEditor <QuillEditor
id="top" id="top"
theme="snow" theme="snow"
placeholder="Entscheidung Inhalt..." placeholder="Beschluss Inhalt..."
style="height: 250px; max-height: 250px; min-height: 250px" style="height: 250px; max-height: 250px; min-height: 250px"
contentType="html" contentType="html"
:toolbar="toolbarOptions" :toolbar="toolbarOptions"

View file

@ -57,8 +57,8 @@
<QuillEditor <QuillEditor
id="top" id="top"
theme="snow" theme="snow"
placeholder="Entscheidung Inhalt..." placeholder="Abstimmung Inhalt..."
style="height: 100px; max-height: 100px; min-height: 100px" style="height: 150px; max-height: 150px; min-height: 150px"
contentType="html" contentType="html"
:toolbar="toolbarOptions" :toolbar="toolbarOptions"
v-model:content="item.context" v-model:content="item.context"