Skip to content

Commit

Permalink
πŸ› Fix, when adding configurations using the default public namespace,…
Browse files Browse the repository at this point in the history
… the namespace is shown as empty or nodefine
  • Loading branch information
tonycody committed Sep 14, 2023
1 parent 4b44cdd commit 8730614
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ class NewConfig extends React.Component {
<h1>{locale.newListing}</h1>
<Form className="new-config-form" field={this.field} {...formItemLayout}>
<Form.Item label={locale.namespace} required>
<p>{this.tenant}</p>
<p>{this.tenant ? this.tenant : 'public'}</p>
</Form.Item>
<FormItem label={'Data ID'} required>
<Input
Expand Down

0 comments on commit 8730614

Please sign in to comment.