We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74a2c5c commit feaf211Copy full SHA for feaf211
app/modules/connection_monitor/static/js/connection-monitor-detail.js
@@ -79,7 +79,6 @@
79
pinIcon.style.cssText = 'width:12px;height:12px;';
80
btn.appendChild(pinIcon);
81
btn.appendChild(document.createTextNode('Pin this day'));
82
- if (window.lucide) lucide.createIcons({nameAttr: 'data-lucide', nodes: [btn]});
83
btn.onclick = function() {
84
var ts = Math.floor(Date.now() / 1000);
85
fetch('/api/connection-monitor/pinned-days', {
@@ -91,6 +90,7 @@
91
90
});
92
};
93
parent.appendChild(btn);
+ if (window.lucide) window.lucide.createIcons({nameAttr: 'data-lucide', root: btn});
94
}
95
96
// --- Pinned Days Bar ---
0 commit comments