From fe806884289190a7e27ca56195021b6768058953 Mon Sep 17 00:00:00 2001 From: ChaituVR Date: Mon, 7 Oct 2024 13:11:36 +0530 Subject: [PATCH 1/2] fix: send empty labels with proposals --- src/composables/useClient.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/composables/useClient.ts b/src/composables/useClient.ts index 510d1cd7a313..50e7532166dc 100644 --- a/src/composables/useClient.ts +++ b/src/composables/useClient.ts @@ -52,6 +52,7 @@ export function useClient() { body: payload.body, discussion: payload.discussion, choices: payload.choices, + labels: [], start: payload.start, end: payload.end, snapshot: payload.snapshot, @@ -67,6 +68,7 @@ export function useClient() { body: payload.body, discussion: payload.discussion, choices: payload.choices, + labels: [], plugins: JSON.stringify(plugins) }); } else if (type === 'vote') { From 131a293fef27bf3b451b35d71009c65ddf283103 Mon Sep 17 00:00:00 2001 From: ChaituVR Date: Mon, 7 Oct 2024 13:29:35 +0530 Subject: [PATCH 2/2] fix choices height --- src/components/SpaceCreateVoting.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SpaceCreateVoting.vue b/src/components/SpaceCreateVoting.vue index 9920522bbecb..3e53785d140b 100644 --- a/src/components/SpaceCreateVoting.vue +++ b/src/components/SpaceCreateVoting.vue @@ -166,7 +166,7 @@ defineEmits<{