fix: Use bi-clipboard-data icon for analyzer (bi-flask unavailable)

bi-flask was added in Bootstrap Icons 1.12+, but project uses 1.11.2.
Replace with bi-clipboard-data which is available and conveys
"data analysis".

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-02-21 08:24:43 +01:00
parent 5a7a9476f8
commit 0a73556c78
+2 -2
View File
@@ -751,7 +751,7 @@ function createMessageElement(msg) {
${echoDisplay}
${msg.analyzer_url ? `
<button class="btn btn-outline-secondary btn-msg-action" onclick="window.open('${msg.analyzer_url}', 'meshcore-analyzer')" title="View in Analyzer">
<i class="bi bi-flask"></i>
<i class="bi bi-clipboard-data"></i>
</button>
` : ''}
<button class="btn btn-outline-secondary btn-msg-action" onclick='resendMessage(${JSON.stringify(msg.content)})' title="Resend">
@@ -795,7 +795,7 @@ function createMessageElement(msg) {
` : ''}
${msg.analyzer_url ? `
<button class="btn btn-outline-secondary btn-msg-action" onclick="window.open('${msg.analyzer_url}', 'meshcore-analyzer')" title="View in Analyzer">
<i class="bi bi-flask"></i>
<i class="bi bi-clipboard-data"></i>
</button>
` : ''}
</div>