From f320b76f0c7d6d1a2851bbc6b46e5902f06a03fb Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 14 Sep 2025 06:02:10 +1000 Subject: [PATCH] Handle null returnValue in clickButton call --- src/views/DesktopDialogView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/DesktopDialogView.vue b/src/views/DesktopDialogView.vue index 99c4fbb09..7f1bc538e 100644 --- a/src/views/DesktopDialogView.vue +++ b/src/views/DesktopDialogView.vue @@ -11,7 +11,7 @@ class="first:mr-auto" :label="button.label" :severity="button.severity ?? 'secondary'" - @click="electronAPI().Dialog.clickButton(button.returnValue)" + @click="electronAPI().Dialog.clickButton(button.returnValue ?? '')" />