Remove sync status on smart inventory rows

This commit is contained in:
Michael Abashian 2017-06-07 16:06:46 -04:00
parent fe499c0dca
commit 15e170ca36
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export default ['i18n', function(i18n) {
ngClick: "null",
iconOnly: true,
excludeModal: true,
template: `<source-summary-popover inventory="inventory"></source-summary-popover><host-summary-popover inventory="inventory"></host-summary-popover>`,
template: `<source-summary-popover inventory="inventory" ng-if="inventory.kind === ''"></source-summary-popover><host-summary-popover inventory="inventory" ng-class="{'HostSummaryPopover-noSourceSummary': inventory.kind !== ''}"></host-summary-popover>`,
icons: [{
icon: "{{ 'icon-cloud-' + inventory.syncStatus }}",
awToolTip: "{{ inventory.syncTip }}",

View File

@ -0,0 +1,3 @@
.HostSummaryPopover-noSourceSummary {
margin-left: 19px;
}