Fix isFixedCollectionWithSharedThroughputSupported flag (#774)
This commit is contained in:
parent
861042c27e
commit
c5f76ac2a9
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue