From 937a8f2391b0ac11e07074f6f3e73ae7c3402ac9 Mon Sep 17 00:00:00 2001 From: Darshan Date: Mon, 16 Dec 2024 17:11:50 +0530 Subject: [PATCH 1/3] fix: custom id not added to messages. --- .../messaging/wizard/emailFormList.svelte | 8 +++++++- .../messaging/wizard/pushFormList.svelte | 8 +++++++- .../project-[project]/messaging/wizard/smsFormList.svelte | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/routes/(console)/project-[project]/messaging/wizard/emailFormList.svelte b/src/routes/(console)/project-[project]/messaging/wizard/emailFormList.svelte index 693d209fb7..fd6bd9a027 100644 --- a/src/routes/(console)/project-[project]/messaging/wizard/emailFormList.svelte +++ b/src/routes/(console)/project-[project]/messaging/wizard/emailFormList.svelte @@ -10,7 +10,7 @@ InputTextarea } from '$lib/elements/forms'; import { Pill } from '$lib/elements'; - import { Modal } from '$lib/components'; + import { CustomId, Modal } from '$lib/components'; import { user } from '$lib/stores/user'; import { clickOnEnter } from '$lib/helpers/a11y'; import { ID, MessagingProviderType } from '@appwrite.io/console'; @@ -113,5 +113,11 @@ Message ID + {:else} + {/if} diff --git a/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte b/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte index dc8a5b02a2..6c7e1bafec 100644 --- a/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte +++ b/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte @@ -38,7 +38,7 @@ Label } from '$lib/elements/forms'; import { Pill } from '$lib/elements'; - import { Modal } from '$lib/components'; + import { CustomId, Modal } from '$lib/components'; import { user } from '$lib/stores/user'; import { clickOnEnter } from '$lib/helpers/a11y'; import { ID, MessagingProviderType } from '@appwrite.io/console'; @@ -232,6 +232,12 @@ Message ID + {:else} + {/if} + {:else} + {/if} From eb064bd84129c5daf2d905155436906f70b1f84a Mon Sep 17 00:00:00 2001 From: Darshan Date: Tue, 17 Dec 2024 10:54:53 +0530 Subject: [PATCH 2/3] add: autofocus. --- .../project-[project]/messaging/wizard/pushFormList.svelte | 1 + .../project-[project]/messaging/wizard/smsFormList.svelte | 1 + 2 files changed, 2 insertions(+) diff --git a/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte b/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte index 6c7e1bafec..3316183d1b 100644 --- a/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte +++ b/src/routes/(console)/project-[project]/messaging/wizard/pushFormList.svelte @@ -234,6 +234,7 @@ {:else} {:else} Date: Tue, 17 Dec 2024 14:06:41 +0530 Subject: [PATCH 3/3] ci: empty commit