Skip to content

Commit 57b7e10

Browse files
Update attachPVC controller to use new DataService.list
1 parent 295a6c8 commit 57b7e10

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/scripts/controllers/attachPVC.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ angular.module('openshiftConsole')
127127
}
128128
);
129129

130-
DataService.list("persistentvolumeclaims", context, function(pvcs) {
130+
DataService.list("persistentvolumeclaims", context).then(function(pvcs) {
131131
$scope.pvcs = orderByDisplayName(pvcs.by("metadata.name"));
132132
if (!_.isEmpty($scope.pvcs) && !$scope.attach.persistentVolumeClaim) {
133133
$scope.attach.persistentVolumeClaim = _.head($scope.pvcs);

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8034,7 +8034,7 @@ var b = _.get(a, "spec.template");
80348034
c.existingVolumeNames = k.getVolumeNames(b);
80358035
}, function(a) {
80368036
p(b.name + " could not be loaded.", m(a));
8037-
}), h.list("persistentvolumeclaims", j, function(a) {
8037+
}), h.list("persistentvolumeclaims", j).then(function(a) {
80388038
c.pvcs = l(a.by("metadata.name")), _.isEmpty(c.pvcs) || c.attach.persistentVolumeClaim || (c.attach.persistentVolumeClaim = _.head(c.pvcs));
80398039
});
80408040
};

dist/styles/main.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -2520,7 +2520,7 @@ select.bs-select-hidden,select.selectpicker{display:none!important}
25202520
.c3-chart-arc .c3-gauge-value{fill:#000}
25212521
/*!
25222522
* Datetimepicker for Bootstrap 3
2523-
* version : 4.17.47
2523+
* version : 4.17.45
25242524
* https://github.com/Eonasdan/bootstrap-datetimepicker/
25252525
*/
25262526
.bootstrap-datetimepicker-widget{list-style:none}

0 commit comments

Comments
 (0)