Remove preview label from Computed Properties. (#1842)
This commit is contained in:
parent
b6e3e5ea1c
commit
ff4bc78d6c
|
@ -151,7 +151,7 @@ export const getTabTitle = (tab: SettingsV2TabTypes): string => {
|
||||||
case SettingsV2TabTypes.PartitionKeyTab:
|
case SettingsV2TabTypes.PartitionKeyTab:
|
||||||
return "Partition Keys (preview)";
|
return "Partition Keys (preview)";
|
||||||
case SettingsV2TabTypes.ComputedPropertiesTab:
|
case SettingsV2TabTypes.ComputedPropertiesTab:
|
||||||
return "Computed Properties (preview)";
|
return "Computed Properties";
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unknown tab ${tab}`);
|
throw new Error(`Unknown tab ${tab}`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -296,7 +296,7 @@ exports[`SettingsComponent renders 1`] = `
|
||||||
/>
|
/>
|
||||||
</PivotItem>
|
</PivotItem>
|
||||||
<PivotItem
|
<PivotItem
|
||||||
headerText="Computed Properties (preview)"
|
headerText="Computed Properties"
|
||||||
itemKey="ComputedPropertiesTab"
|
itemKey="ComputedPropertiesTab"
|
||||||
key="ComputedPropertiesTab"
|
key="ComputedPropertiesTab"
|
||||||
style={
|
style={
|
||||||
|
|
Loading…
Reference in New Issue