patches v1.7.5 #120
3 changed files with 6 additions and 5 deletions
|
@ -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) => {});
|
||||||
},
|
},
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue