diff --git a/app/guid-node/addons/index/template.hbs b/app/guid-node/addons/index/template.hbs index 56b67152bb9..9705bfc09fb 100644 --- a/app/guid-node/addons/index/template.hbs +++ b/app/guid-node/addons/index/template.hbs @@ -243,10 +243,18 @@ {{manager.selectedConfiguration.displayName}}
- {{#if manager.selectedConfiguration.rootFolder}} - {{manager.selectedConfiguration.rootFolderName}} + {{#if (instance-of manager.selectedConfiguration 'ConfiguredLinkAddon')}} + {{#if manager.selectedConfiguration.targetUrl}} + {{manager.selectedConfiguration.targetItemName}} + {{else}} + {{t 'addons.list.target-not-set'}} + {{/if}} {{else}} - {{t 'addons.list.root-folder-not-set'}} + {{#if manager.selectedConfiguration.rootFolder}} + {{manager.selectedConfiguration.rootFolderName}} + {{else}} + {{t 'addons.list.root-folder-not-set'}} + {{/if}} {{/if}}
diff --git a/app/guid-node/links/styles.scss b/app/guid-node/links/styles.scss index c904e51f0fb..b82c910252e 100644 --- a/app/guid-node/links/styles.scss +++ b/app/guid-node/links/styles.scss @@ -9,6 +9,10 @@ padding-top: 10px; } +.edit-header { + min-width: 30px; +} + .table-row { border-bottom: 1px solid $color-border-gray; } diff --git a/app/guid-node/links/template.hbs b/app/guid-node/links/template.hbs index bfacda06ee7..ab5af5264ab 100644 --- a/app/guid-node/links/template.hbs +++ b/app/guid-node/links/template.hbs @@ -7,7 +7,7 @@ {{t 'links.linked-service'}} {{t 'links.display-name'}} {{t 'links.resource-type'}} - + {{#if this.currentUserCanEdit}}