mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 18:20:00 -03:30
22 lines
808 B
JavaScript
22 lines
808 B
JavaScript
/* jshint unused: vars */
|
|
|
|
export default
|
|
[ 'templateUrl',
|
|
function(templateUrl) {
|
|
return { restrict: 'E',
|
|
templateUrl: templateUrl('system-tracking/fact-data-table/fact-data-table'),
|
|
scope:
|
|
{ leftHostname: '=',
|
|
rightHostname: '=',
|
|
leftScanDate: '=',
|
|
rightScanDate: '=',
|
|
leftDataNoScans: '=',
|
|
rightDataNoScans: '=',
|
|
isNestedDisplay: '=',
|
|
singleResultView: '=',
|
|
factData: '='
|
|
}
|
|
};
|
|
}
|
|
];
|