Merge pull request #13809 from influxdata/fix-buckets-max-buckets
Update max buckets to be greater than the numberpull/13811/head
commit
01ca65301a
ui/src/cloud/actions
|
@ -204,7 +204,7 @@ export const checkBucketLimits = () => async (
|
|||
const bucketsMax = extractBucketMax(limits)
|
||||
const bucketsCount = list.length
|
||||
|
||||
if (bucketsCount >= bucketsMax) {
|
||||
if (bucketsCount > bucketsMax) {
|
||||
dispatch(setBucketLimitStatus(LimitStatus.EXCEEDED))
|
||||
dispatch(notify(resourceLimitReached('buckets')))
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue