diff --git a/ui/app/components/conditional-link-to.hbs b/ui/app/components/conditional-link-to.hbs
new file mode 100644
index 00000000000..00766532da5
--- /dev/null
+++ b/ui/app/components/conditional-link-to.hbs
@@ -0,0 +1,9 @@
+{{#if @condition}}
+
+
+ {{#if (and trigger.data.isSuccess (not trigger.data.isError))}}
+
+ {{#each this.updateParamGroups as |group|}}
+ -
+ Group "{{group.name}}"
+
+ {{#each-in group.update as |k v|}}
+ -
+ {{k}}
+ {{v}}
+
+ {{/each-in}}
+
+
+ {{/each}}
+
+ {{/if}}
+
+ {{#if trigger.data.isBusy}}
+ Loading Parameters
+ {{/if}}
+
+ {{#if trigger.data.isError}}
+ Error loading parameters
+ {{/if}}
+
+
+