mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
Merge pull request #957 from mabashian/860-facts
Fixed display of host facts
This commit is contained in:
commit
81fc4219ae
@ -7,8 +7,8 @@
|
||||
function AnsibleFacts($scope, Facts, ParseTypeChange, ParseVariableString) {
|
||||
|
||||
function init() {
|
||||
$scope.facts = ParseVariableString(Facts.data);
|
||||
let rows = (_.isEmpty(Facts.data)) ? 6 : 20;
|
||||
$scope.facts = ParseVariableString(Facts);
|
||||
let rows = (_.isEmpty(Facts)) ? 6 : 20;
|
||||
$("#host_facts").attr("rows", rows);
|
||||
$scope.parseType = 'yaml';
|
||||
ParseTypeChange({
|
||||
|
Loading…
Reference in New Issue
Block a user