From d215509e147b3e41b60e7a27382daf85ef49606f Mon Sep 17 00:00:00 2001 From: James Tanner Date: Fri, 7 Jul 2023 22:30:24 -0700 Subject: [PATCH] Fix crash --- ui/core/proto_utils/action_id.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/core/proto_utils/action_id.ts b/ui/core/proto_utils/action_id.ts index c28622bf76..8d1b2bade1 100644 --- a/ui/core/proto_utils/action_id.ts +++ b/ui/core/proto_utils/action_id.ts @@ -408,7 +408,7 @@ export class ActionId { } else if (this.otherId) { return 'other-' + this.otherId; } else { - throw new Error('Empty action id!'); + return 'empty-action'; } }