Skip to content

Commit e813b72

Browse files
committed
Fix: close @click attribute properly in messaging button (#1641)
1 parent 81bd60e commit e813b72

File tree

1 file changed

+1
-1
lines changed
  • src/content/datachannel/messaging

1 file changed

+1
-1
lines changed

src/content/datachannel/messaging/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class MessagingSample extends LitElement {
120120
<label for="localOutgoing">Local outgoing message:</label>
121121
<textarea class="message" id="localOutgoing"
122122
placeholder="Local outgoing message goes here."></textarea>
123-
<button ?disabled="${!this.connected}" @click="${e => this._sendMessage('#localOutgoing', this._localChannel)}
123+
<button ?disabled="${!this.connected}" @click="${e => this._sendMessage('#localOutgoing', this._localChannel)}"
124124
id="sendLocal">Send message from local</button>
125125
</div>
126126
<div class="messageBox">

0 commit comments

Comments
 (0)