@gravitee/ui-components 3.24.4-migrate-codemirror-c1088e8 → 3.24.4-migrate-codemirror-999a116
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/molecules/gv-code.js +4 -1
package/package.json
CHANGED
package/src/molecules/gv-code.js
CHANGED
|
@@ -95,7 +95,10 @@ export class GvCode extends GvInput {
|
|
|
95
95
|
return html`
|
|
96
96
|
<div class="${classMap(classes)}">
|
|
97
97
|
${this.label ? html`<label for="code">${this.label}</label>` : ''}
|
|
98
|
-
<div id="${this._id}" class="${classMap(inputClasses)}"
|
|
98
|
+
<div id="${this._id}" class="${classMap(inputClasses)}">
|
|
99
|
+
<!-- No format please -->
|
|
100
|
+
${this.renderIcon()}
|
|
101
|
+
</div>
|
|
99
102
|
</div>
|
|
100
103
|
${this.description != null ? html`<div class="description" .innerHTML="${this.description}"></div>` : ''}
|
|
101
104
|
`;
|