From 3de456378bea8e722a7d32302d9e9c10da90bab5 Mon Sep 17 00:00:00 2001 From: Thomas Jung Date: Sat, 5 Sep 2026 12:35:35 -0400 Subject: [PATCH] =?UTF-8?q?fix(admin):=20enable=20list=E2=86=92object=20na?= =?UTF-8?q?vigation=20for=20Channels=20admin=20components?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Row-click on Channels / ChannelCollections / ChannelTopicMap list reports did not navigate to the object page, so Edit was unreachable. The FE ListReport target was missing the navigation block that wires the list to its ObjectPage route (console: "creation mode 'NewPage' is used but the navigation configuration to the sub page is missing" + "storeInnerAppStateAsync is not a function"). Adds the navigation block to each ListReport settings, matching the working Concepts component pattern. --- app/admin/channel-collections/webapp/manifest.json | 5 ++++- app/admin/channel-topic-map/webapp/manifest.json | 5 ++++- app/admin/channels/webapp/manifest.json | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/app/admin/channel-collections/webapp/manifest.json b/app/admin/channel-collections/webapp/manifest.json index 650cc0603..5b0f48c6e 100644 --- a/app/admin/channel-collections/webapp/manifest.json +++ b/app/admin/channel-collections/webapp/manifest.json @@ -59,7 +59,10 @@ "options": { "settings": { "contextPath": "/ChannelCollections", - "initialLoad": "Enabled" + "initialLoad": "Enabled", + "navigation": { + "ChannelCollections": { "detail": { "route": "ChannelCollectionsObject" } } + } } } }, diff --git a/app/admin/channel-topic-map/webapp/manifest.json b/app/admin/channel-topic-map/webapp/manifest.json index e5ff2e3c9..a69b67040 100644 --- a/app/admin/channel-topic-map/webapp/manifest.json +++ b/app/admin/channel-topic-map/webapp/manifest.json @@ -59,7 +59,10 @@ "options": { "settings": { "contextPath": "/ChannelTopicMap", - "initialLoad": "Enabled" + "initialLoad": "Enabled", + "navigation": { + "ChannelTopicMap": { "detail": { "route": "ChannelTopicMapObject" } } + } } } }, diff --git a/app/admin/channels/webapp/manifest.json b/app/admin/channels/webapp/manifest.json index ed4fa47e7..a1147868a 100644 --- a/app/admin/channels/webapp/manifest.json +++ b/app/admin/channels/webapp/manifest.json @@ -59,7 +59,10 @@ "options": { "settings": { "contextPath": "/Channels", - "initialLoad": "Enabled" + "initialLoad": "Enabled", + "navigation": { + "Channels": { "detail": { "route": "ChannelsObject" } } + } } } },