Inventory

Fixed inventory edit dialog not showing on inventory tab.
This commit is contained in:
Chris Houseknecht 2014-06-30 18:08:58 -04:00
parent 6e76ad4918
commit aab8125fcb
2 changed files with 2 additions and 1 deletions

View File

@ -164,7 +164,7 @@ angular.module('InventoryHelper', ['RestServices', 'Utilities', 'OrganizationLis
Rest.setUrl(defaultUrl + scope.inventory_id + '/');
Rest.put(data)
.success(function (data) {
if (scope.inventory_variables) {
if (scope.variables) {
scope.$emit('UpdateInventoryVariables', data);
} else {
scope.$emit('InventorySaved');

View File

@ -1,4 +1,5 @@
<div class="tab-pane" id="inventories">
<div ng-cloak id="htmlTemplate"></div>
<div id="inventory-edit-modal-dialog"></div>
<div ng-include="'/static/partials/logviewer.html'"></div>
</div>