From 1354a25f053371912f7cbee9528aa8ee625ae182 Mon Sep 17 00:00:00 2001 From: Mathias Oterhals Myklebust Date: Thu, 12 Sep 2024 11:49:57 +0200 Subject: [PATCH] =?UTF-8?q?hotfix(customerCases):=20documentList=20?= =?UTF-8?q?=E2=86=92=20documentTypeList?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes the missing plus icon for creating a new customer case --- studioShared/deskStructure.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/studioShared/deskStructure.ts b/studioShared/deskStructure.ts index 355513603..0f19063f5 100644 --- a/studioShared/deskStructure.ts +++ b/studioShared/deskStructure.ts @@ -9,7 +9,7 @@ export const deskStructure: StructureResolver = (S) => S.listItem() .title("Customer cases") .child( - S.documentList() + S.documentTypeList(customerCaseID) .title("Customer cases") .filter("_type == $type && language == $lang") .params({ type: customerCaseID, lang: i18n.base }),