From 520bb21a4a0887478dffbcc83997a4015f7e67a4 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Wed, 7 May 2025 11:58:48 +0200 Subject: Invocation server: fix access to configuration in overview list --- doc/invocations-http-server/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/invocations-http-server/server.py b/doc/invocations-http-server/server.py index 83df3fd1..0e4175da 100755 --- a/doc/invocations-http-server/server.py +++ b/doc/invocations-http-server/server.py @@ -113,7 +113,7 @@ class InvocationServer: profile_data = {} count += 1 target = profile_data.get("target") - config = profile_data.get("config", {}) + config = profile_data.get("configuration", {}) invocation = { "name": e, "subcommand": profile_data.get("subcommand"), -- cgit v1.2.3