diff --git a/plugins/workbench-resources/src/components/Applications.svelte b/plugins/workbench-resources/src/components/Applications.svelte
index c3657cc09a..95b50fc3ff 100644
--- a/plugins/workbench-resources/src/components/Applications.svelte
+++ b/plugins/workbench-resources/src/components/Applications.svelte
@@ -16,24 +16,20 @@
{#each apps as app}
-
{ navigateApp(app._id) }} notify={false}/>
+ {
+ dispatch('active', app)
+ }} notify={false}/>
{/each}
diff --git a/plugins/workbench-resources/src/components/Workbench.svelte b/plugins/workbench-resources/src/components/Workbench.svelte
index 6c756b4066..ead8c9aef7 100644
--- a/plugins/workbench-resources/src/components/Workbench.svelte
+++ b/plugins/workbench-resources/src/components/Workbench.svelte
@@ -14,7 +14,7 @@
-->
{#if client}
@@ -195,7 +213,9 @@
notify={false}
/>
-
+ {
+ navigateApp(evt.detail)
+ }} />