Skip to content
Snippets Groups Projects
Unverified Commit cb8dfc63 authored by Alexander Lesnenko's avatar Alexander Lesnenko Committed by GitHub
Browse files

fix datamodel borders (#20103)

parent 8819df06
No related branches found
No related tags found
No related merge requests found
......@@ -85,9 +85,9 @@ export default class Column extends Component {
</div>
</div>
</div>
<div className="MetadataTable-title flex flex-column flex-full bordered rounded mt1 mr1">
<div className="MetadataTable-title flex flex-column flex-full mt1 mr1">
<InputBlurChange
className="AdminInput TableEditor-field-description"
className="AdminInput TableEditor-field-description bordered rounded"
type="text"
value={this.props.field.description || ""}
onBlurChange={this.handleChangeDescription}
......
......@@ -120,16 +120,16 @@ export default class MetadataTable extends Component {
return (
<div className="MetadataTable full px3">
<div className="MetadataTable-title flex flex-column bordered rounded">
<div className="MetadataTable-title flex flex-column">
<InputBlurChange
className="AdminInput TableEditor-table-name text-bold border-bottom rounded-top"
className="AdminInput TableEditor-table-name text-bold rounded-top bordered"
name="display_name"
type="text"
value={table.display_name || ""}
onBlurChange={this.onNameChange}
/>
<InputBlurChange
className="AdminInput TableEditor-table-description rounded-bottom"
className="AdminInput TableEditor-table-description rounded-bottom bordered"
name="description"
type="text"
value={table.description || ""}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment