Fix isFixedCollectionWithSharedThroughputSupported flag (#774)

This commit is contained in:
victor-meng 2021-05-12 07:16:13 -07:00 committed by GitHub
parent 861042c27e
commit c5f76ac2a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ import { updateUserContext, userContext } from "../UserContext";
import { getCollectionName, getDatabaseName, getUploadName } from "../Utils/APITypeUtils";
import { decryptJWTToken, getAuthorizationHeader } from "../Utils/AuthorizationUtils";
import { stringToBlob } from "../Utils/BlobUtils";
import { isCapabilityEnabled } from "../Utils/CapabilityUtils";
import { fromContentUri, toRawContentUri } from "../Utils/GitHubUtils";
import * as NotificationConsoleUtils from "../Utils/NotificationConsoleUtils";
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../Utils/NotificationConsoleUtils";
@ -368,7 +369,7 @@ export default class Explorer {
return false;
}
return userContext.apiType === "Mongo";
return isCapabilityEnabled("EnableMongo");
});
this.isServerlessEnabled = ko.computed(