From e857b414203c99fac7dfc2116257517e1e9425f4 Mon Sep 17 00:00:00 2001 From: Zachary Hamm Date: Wed, 16 Aug 2023 12:45:41 -0500 Subject: [PATCH] fix(web): use correct id to refresh asset after exec --- app/web/src/components/AssetDetailsPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/web/src/components/AssetDetailsPanel.vue b/app/web/src/components/AssetDetailsPanel.vue index 41842edcde..e94807d7f1 100644 --- a/app/web/src/components/AssetDetailsPanel.vue +++ b/app/web/src/components/AssetDetailsPanel.vue @@ -211,7 +211,7 @@ const executeAsset = async () => { assetStore.selectedAssetId, schemaVariantId, ); - await assetStore.LOAD_ASSET(schemaVariantId); // TODO(Wendy) - This call is failing which leads to issues on the front end that go away on page refresh! + await assetStore.LOAD_ASSET(assetStore.selectedAssetId); await funcStore.FETCH_INPUT_SOURCE_LIST(schemaVariantId); // a new asset means new input sources } }