From 0fc17d8a10ec82e72f1ff2065a7d5dabd3aa58e7 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Fri, 14 Jun 2024 16:08:44 -0500 Subject: [PATCH] cast invocation state query route prop `fromPanel` to Boolean --- client/src/entry/analysis/router.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/entry/analysis/router.js b/client/src/entry/analysis/router.js index 16484c23f5d7..71b66c66ed9a 100644 --- a/client/src/entry/analysis/router.js +++ b/client/src/entry/analysis/router.js @@ -628,7 +628,7 @@ export function getRouter(Galaxy) { props: (route) => ({ invocationId: route.params.invocationId, isFullPage: true, - fromPanel: route.query.from_panel, + fromPanel: Boolean(route.query.from_panel), }), }, {