@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-components",
3
- "version": "3.24.4-migrate-codemirror-c1088e8",
3
+ "version": "3.24.4-migrate-codemirror-999a116",
4
4
  "description": "Gravitee.io UI Components library, based on Web Components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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)}">${this.renderIcon()}</div>
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
  `;