fix lookup message

This commit is contained in:
Jake McDermott
2018-11-14 13:27:13 -05:00
parent e0a28e32eb
commit 018a8e12de
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ export default [ 'templateUrl', 'QuerySet', 'GetBasePath', 'generateList', '$com
};
if (scope.promptData.templateType === "workflow_job_template") {
listConfig.lookupMessage = i18n._("This inventory is applied to all job templates nodes that prompt for an inventory.");
listConfig.lookupMessage = i18n._("This inventory is applied to all job template nodes that prompt for an inventory.");
}
let html = GenerateList.build(listConfig);

View File

@@ -71,14 +71,14 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n) {
inventory: {
label: i18n._('Inventory'),
type: 'lookup',
lookupMessage: i18n._("This inventory is applied to all job templates nodes that prompt for an inventory."),
lookupMessage: i18n._("This inventory is applied to all job template nodes that prompt for an inventory."),
basePath: 'inventory',
list: 'InventoryList',
sourceModel: 'inventory',
sourceField: 'name',
autopopulateLookup: false,
column: 1,
awPopOver: "<p>" + i18n._("Select an inventory for the workflow. This inventory is applied to all job templates nodes that prompt for an inventory.") + "</p>",
awPopOver: "<p>" + i18n._("Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory.") + "</p>",
dataTitle: i18n._('Inventory'),
dataPlacement: 'right',
dataContainer: "body",