dropdown memory entry

Worth discussing: in memory-entry.html I had issues with x-move-to usage. The visual aspect is different than moving the element after the same target with x-move-after.

Alessandro committed Feb 17, 2026 at 14:24 UTC 57b18336e3cbeac24599aff58cc70d04572b0b69
1 file changed +12
plugins/memory/extensions/webui/sidebar-quick-actions-dropdown-start/memory-entry.html new
+12
@@ -0,0 +1,12 @@
1 +<!-- Memory -->
2 +<div x-data>
3 + <button
4 + x-move-after=".quick-actions-dropdown .dropdown-header + .dropdown-item"
5 + class="dropdown-item"
6 + id="memory-dash-dropdown"
7 + title="Memory"
8 + @click="openModal('../plugins/memory/webui/memory-dashboard.html'); dropdownOpen = false">
9 + <span class="material-symbols-outlined">psychology</span>
10 + <span>Memory</span>
11 + </button>
12 +</div>