1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

Merge pull request #7965 from Budibase/fix/floor-usage-metrics

Minor change to floor usage metrics to avoid misleading 100 quota messages
This commit is contained in:
Martin McKeaveney 2022-09-26 15:33:17 +01:00 committed by GitHub
commit 0b2b099286
2 changed files with 5 additions and 2 deletions

View file

@ -12,7 +12,10 @@
$: daysRemaining = $licensing.quotaResetDaysRemaining
$: quotaResetDate = $licensing.quotaResetDate
$: dayPassesUsed = $licensing.usageMetrics?.dayPasses
$: dayPassesUsed =
$licensing.usageMetrics?.dayPasses > 100
? 100
: $licensing.usageMetrics?.dayPasses
$: dayPassesTitle =
dayPassesUsed >= 100
? "You have run out of Day Passes"

View file

@ -87,7 +87,7 @@ export const createLicensingStore = () => {
return keys.reduce((acc, key) => {
const quotaLimit = license[key].value
const quotaUsed = (quota[key] / quotaLimit) * 100
acc[key] = quotaLimit > -1 ? Math.round(quotaUsed) : -1
acc[key] = quotaLimit > -1 ? Math.floor(quotaUsed) : -1
return acc
}, {})
}