mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-08-25 16:25:34 +00:00
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.
12 lines
368 B
HTML
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>
|