Skip to content

Commit

Permalink
fix(gv-expression-language): hide label if not use
Browse files Browse the repository at this point in the history
  • Loading branch information
gcusnieux authored and tcompiegne committed Jun 15, 2021
1 parent afb3245 commit cff4675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molecules/gv-expression-language.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ export class GvExpressionLanguage extends LitElement {
...(this.options || {}),
};
return html`<div title="Ctrl-E or Cmd-E to insert EL">
<label>${this.label}</label>
${this.label != null ? html`<label>${this.label}</label>` : ''}
<gv-code
.options="${options}"
.value="${this.value}"
Expand Down

0 comments on commit cff4675

Please sign in to comment.