From 2c320ff324d4cd7d25dba8ff5984af1507bb76cc Mon Sep 17 00:00:00 2001 From: biast12 <53872542+biast12@users.noreply.github.com> Date: Fri, 4 Sep 2026 23:03:26 +0200 Subject: [PATCH] Initialize team fields in panel create form Add `teams` and `default_team` to the initial panel payload on the create page so new panels include explicit team assignment defaults. --- frontend/src/pages/manage/panels/create.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/pages/manage/panels/create.tsx b/frontend/src/pages/manage/panels/create.tsx index 104042ac..b8a9d3fe 100644 --- a/frontend/src/pages/manage/panels/create.tsx +++ b/frontend/src/pages/manage/panels/create.tsx @@ -115,6 +115,8 @@ const PanelsPage: FC = () => { emoji_name: "📩", mentions: [], kb_category_ids: [], + teams: [], + default_team: true, mention_behaviour: "none", use_custom_emoji: false, disabled: false,