Display large partition key message for SQL API accounts only. (#1371)
This commit is contained in:
parent
2f32a676d0
commit
b2ab979360
|
@ -310,7 +310,9 @@ export class SubSettingsComponent extends React.Component<SubSettingsComponentPr
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{this.isLargePartitionKeyEnabled() && <Text>Large {this.partitionKeyName.toLowerCase()} has been enabled</Text>}
|
{userContext.apiType === "SQL" && this.isLargePartitionKeyEnabled() && (
|
||||||
|
<Text>Large {this.partitionKeyName.toLowerCase()} has been enabled</Text>
|
||||||
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue