Commit d845f4e3 authored by Juorder Gonzalez's avatar Juorder Gonzalez Committed by GitHub

Merge pull request #250 from ZBoxApp/manager_beta_v2

Merge pull request #249 from ZBoxApp/manager_beta_v2
parents a8e5c49d 0487bce7
......@@ -103,7 +103,7 @@ export default class DomainMailboxPlans extends React.Component {
}
for (const key in plans) {
if (plans.hasOwnProperty(key) && plans[key].used !== 0 && plans[key].limit !== 0) {
if (plans.hasOwnProperty(key) && plans[key].limit !== 0) {
const plan = plans[key];
totalUsed += (parseInt(plan.used, 10)) ? parseInt(plan.used, 10) : 0;
if (plan.limit === 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment