We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44fd63e commit b89a8d9Copy full SHA for b89a8d9
client/directives/modals/settingsModal/forms/billingForm/planStatus/planStatusFormDirective.js
@@ -18,11 +18,7 @@ function planStatusForm(
18
$scope.getMeterClass = function () {
19
var classes = {};
20
if ($scope.PSFC.configurations) {
21
- var configs = $scope.PSFC.configurations;
22
- if (configs > 15) {
23
- configs = 15;
24
- }
25
- classes['used-' + configs] = true;
+ classes['used-' + $scope.PSFC.configurations] = true;
26
}
27
if (keypather.get($scope, 'preview.length')) {
28
classes['preview-used-' + billingPlans[$scope.preview].maxConfigurations] = true;
0 commit comments