From 48bed1569b24014065934c23efeaf27a91b976b9 Mon Sep 17 00:00:00 2001 From: Theo <36564257+theoholl@users.noreply.github.com> Date: Mon, 29 Dec 2025 13:54:30 +0000 Subject: [PATCH] Clear input value for new board name when invoking the 'createBoard' action or canceling the edit Signed-off-by: Theo <36564257+theoholl@users.noreply.github.com> --- src/components/navigation/AppNavigationAddBoard.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/navigation/AppNavigationAddBoard.vue b/src/components/navigation/AppNavigationAddBoard.vue index 51eb9c479..47b76180f 100644 --- a/src/components/navigation/AppNavigationAddBoard.vue +++ b/src/components/navigation/AppNavigationAddBoard.vue @@ -88,10 +88,12 @@ export default { this.loading = false this.editing = false this.color = randomColor() + this.value = '' }, cancelEdit(e) { this.editing = false this.color = randomColor() + this.value = '' }, }, }