Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#5360] Improvement(web): hidden commont and property element for oceanbase schema #5394

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ const CreateSchemaDialog = props => {
</FormControl>
</Grid>

{!['jdbc-mysql', 'lakehouse-paimon'].includes(activatedCatalogDetail?.provider) && (
{!['jdbc-mysql', 'lakehouse-paimon', 'jdbc-oceanbase'].includes(activatedCatalogDetail?.provider) && (
<Grid item xs={12}>
<FormControl fullWidth>
<Controller
Expand All @@ -318,7 +318,7 @@ const CreateSchemaDialog = props => {
</Grid>
)}

{!['jdbc-postgresql', 'lakehouse-paimon', 'kafka', 'jdbc-mysql'].includes(
{!['jdbc-postgresql', 'lakehouse-paimon', 'kafka', 'jdbc-mysql', 'jdbc-oceanbase'].includes(
activatedCatalogDetail?.provider
) && (
<Grid item xs={12} data-refer='schema-props-layout'>
Expand Down Expand Up @@ -400,7 +400,7 @@ const CreateSchemaDialog = props => {
</Grid>
)}

{!['jdbc-postgresql', 'lakehouse-paimon', 'kafka', 'jdbc-mysql'].includes(
{!['jdbc-postgresql', 'lakehouse-paimon', 'kafka', 'jdbc-mysql', 'jdbc-oceanbase'].includes(
activatedCatalogDetail?.provider
) && (
<Grid item xs={12}>
Expand Down
Loading