agent-zero/plugins/_memory/extensions/webui/sidebar-quick-actions-dropdown-start/memory-entry.html
frdel 93d1131ce1 Unify WebUI icons and fix message collapsing
Introduce the x-icon custom element and migrate first-party WebUI and bundled plugin markup while retaining legacy Material icon compatibility. Defer icon-font readiness until the splash-installed document is parsed so Firefox does not leave icons transparent. Centralize chat message collapse handling, avoid false Show More controls on short user messages, and align grouped-message pagination styling. Update DOX and add regression coverage for the icon and collapse behavior.
2026-07-31 13:32:41 +00:00

12 lines
368 B
HTML

<!-- Memory -->
<div x-data>
<button
x-move-after=".quick-actions-dropdown .dropdown-header + .dropdown-item"
class="dropdown-item"
id="memory-dash-dropdown"
title="Memory"
@click="openModal('/plugins/_memory/webui/memory-dashboard.html'); dropdownOpen = false">
<x-icon name="psychology"></x-icon>
<span>Memory</span>
</button>
</div>