patches v1.7.5 #120
3 changed files with 6 additions and 5 deletions
|
@ -49,7 +49,8 @@ export const useMembershipStore = defineStore("membership", {
|
|||
http
|
||||
.get(`/admin/member/${memberId}/memberships/totalstatistics`)
|
||||
.then((result) => {
|
||||
this.totalMembershipStatistics = result.data;
|
||||
if (result.status == 200) this.totalMembershipStatistics = result.data;
|
||||
else this.totalMembershipStatistics = undefined;
|
||||
})
|
||||
.catch((err) => {});
|
||||
},
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
type="text"
|
||||
name="title"
|
||||
id="title"
|
||||
placeholder="Entscheidung"
|
||||
placeholder="Beschluss"
|
||||
autocomplete="off"
|
||||
v-model="item.topic"
|
||||
@keyup.prevent
|
||||
|
@ -57,7 +57,7 @@
|
|||
<QuillEditor
|
||||
id="top"
|
||||
theme="snow"
|
||||
placeholder="Entscheidung Inhalt..."
|
||||
placeholder="Beschluss Inhalt..."
|
||||
style="height: 250px; max-height: 250px; min-height: 250px"
|
||||
contentType="html"
|
||||
:toolbar="toolbarOptions"
|
||||
|
|
|
@ -57,8 +57,8 @@
|
|||
<QuillEditor
|
||||
id="top"
|
||||
theme="snow"
|
||||
placeholder="Entscheidung Inhalt..."
|
||||
style="height: 100px; max-height: 100px; min-height: 100px"
|
||||
placeholder="Abstimmung Inhalt..."
|
||||
style="height: 150px; max-height: 150px; min-height: 150px"
|
||||
contentType="html"
|
||||
:toolbar="toolbarOptions"
|
||||
v-model:content="item.context"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue