Minor text change, enabling feature for connection string

This commit is contained in:
Chuck Skelton 2023-06-23 17:31:57 -07:00
parent bbd19d3e65
commit 3734313c81
2 changed files with 8 additions and 12 deletions

View File

@ -763,8 +763,7 @@ export class SettingsComponent extends React.Component<SettingsComponentProps, S
const numberOfRegions = userContext.databaseAccount?.properties.locations?.length || 1;
const throughputDelta = (newThroughput - this.offer.autoscaleMaxThroughput) * numberOfRegions;
if (throughputCap && throughputCap !== -1 && throughputCap - this.totalThroughputUsed < throughputDelta) {
throughputError = `Your account is currently configured with a total throughput limit of ${throughputCap} RU/s. This update isn't possible because it would increase the total throughput to ${
this.totalThroughputUsed + throughputDelta
throughputError = `Your account is currently configured with a total throughput limit of ${throughputCap} RU/s. This update isn't possible because it would increase the total throughput to ${this.totalThroughputUsed + throughputDelta
} RU/s. Change total throughput limit in cost management.`;
}
this.setState({ autoPilotThroughput: newThroughput, throughputError });
@ -776,8 +775,7 @@ export class SettingsComponent extends React.Component<SettingsComponentProps, S
const numberOfRegions = userContext.databaseAccount?.properties.locations?.length || 1;
const throughputDelta = (newThroughput - this.offer.manualThroughput) * numberOfRegions;
if (throughputCap && throughputCap !== -1 && throughputCap - this.totalThroughputUsed < throughputDelta) {
throughputError = `Your account is currently configured with a total throughput limit of ${throughputCap} RU/s. This update isn't possible because it would increase the total throughput to ${
this.totalThroughputUsed + throughputDelta
throughputError = `Your account is currently configured with a total throughput limit of ${throughputCap} RU/s. This update isn't possible because it would increase the total throughput to ${this.totalThroughputUsed + throughputDelta
} RU/s. Change total throughput limit in cost management.`;
}
this.setState({ throughput: newThroughput, throughputError });
@ -1159,9 +1157,7 @@ export class SettingsComponent extends React.Component<SettingsComponentProps, S
}
if (
this.shouldShowComputedPropertiesEditor &&
userContext.authType === AuthType.AAD &&
!userContext.features.enableSDKoperations
this.shouldShowComputedPropertiesEditor
) {
tabs.push({
tab: SettingsV2TabTypes.ComputedPropertiesTab,

View File

@ -148,7 +148,7 @@ export const getTabTitle = (tab: SettingsV2TabTypes): string => {
case SettingsV2TabTypes.IndexingPolicyTab:
return "Indexing Policy";
case SettingsV2TabTypes.ComputedPropertiesTab:
return "Computed Properties";
return "Computed Properties (preview)";
default:
throw new Error(`Unknown tab ${tab}`);
}