Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions ui/sheet-to-mixpanel.html
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,11 @@
function bindEventsAndViews() {
// DYNAMIC VALUES
if (this.DOM.sheet.sheet_name) {
this.DOM.sheetNameLabel.innerHTML = `current sheet: <b>${this.DOM.sheet.sheet_name}</b>`;
this.DOM.sheetNameLabel.textContent = '';
this.DOM.sheetNameLabel.appendChild(document.createTextNode('current sheet: '));
const b = document.createElement('b');
b.textContent = this.DOM.sheet.sheet_name;
this.DOM.sheetNameLabel.appendChild(b);

}

Expand Down Expand Up @@ -1123,4 +1127,4 @@
</script>
</body>

</html>
</html>