Skip to content
Merged
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
2 changes: 1 addition & 1 deletion internal/server/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ <h2 class="modal-title" id="shortcuts-modal-title">Keyboard shortcuts</h2>
const maxAction = Math.max(...topActions.map(r => r.count), 1);
document.getElementById('action-chart').innerHTML = topActions.map(r => `
<div class="bar-row">
<span class="bar-label"><span class="badge">${escapeHtml(r.label)}</span></span>
<span class="bar-label" style="width:140px;min-width:140px;" title="${escapeAttr(r.label)}"><span class="badge" style="max-width:136px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block;vertical-align:middle;">${escapeHtml(r.label)}</span></span>
<div class="bar-track"><div class="bar-fill bar-action" style="width: ${(r.count / maxAction * 100)}%"></div></div>
<span class="bar-count">${r.count}</span>
</div>
Expand Down