Skip to content

Commit f77cb2e

Browse files
committed
Fix Bootstrap 4 JSON Properties jdorn#662
1 parent ffdb663 commit f77cb2e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/editors/object.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,11 +547,12 @@ export class ObjectEditor extends AbstractEditor {
547547
this.header.textContent = this.getTitle()
548548
}
549549
this.title = this.theme.getHeader(this.header)
550+
this.title.style.display = 'inline-block'
550551
this.controls = this.theme.getButtonHolder()
551552
this.controls.style.margin = '0 0 0 10px'
552553

553554
this.container.appendChild(this.title)
554-
this.title.appendChild(this.controls)
555+
this.container.appendChild(this.controls)
555556
this.container.style.position = 'relative'
556557

557558
/* Edit JSON modal */

0 commit comments

Comments
 (0)