open-vault/ui/app/templates/components/console/log-json.hbs
Angel Garbarino 0455d31b84
Remove Ivy Codemirror (#14659)
* setup

* fix mode issue

* actions

* readonly styling

* remove ivycodemirror from package json

* wip

* test coverage for json editor

* text fixes

* fix tests

* fix cursor issue

* changelog

* clean up

* fix

* address pr comments

* unused css and it overides other styling.

* fix

* fix comment
2022-03-29 10:25:16 -06:00

11 lines
306 B
Handlebars

<div class="console-ui-output has-copy-button">
<JsonEditor
@showToolbar={{false}}
@value={{stringify this.content}}
@readOnly={{true}}
@viewportMargin="Infinity"
@gutters={{false}}
@theme="hashi auto-height"
/>
<HoverCopyButton @copyValue={{stringify this.content}} />
</div>