diff --git a/static/js/memory.js b/static/js/memory.js index 6f3e57012..1df76a37a 100644 --- a/static/js/memory.js +++ b/static/js/memory.js @@ -608,6 +608,9 @@ export function renderMemoryList() { memoryList.innerHTML = ''; if (filtered.length === 0) { + const selectBtn = document.getElementById('memory-select-btn'); + if (selectBtn) selectBtn.disabled = true; + if (selectMode) exitSelectMode(); const searchTerm = document.getElementById('memory-search')?.value?.trim() || ''; const _smiley = '' + uiModule.emptyStateIcon('smiley') + ''; if (searchTerm || activeCategory !== 'all') { @@ -627,6 +630,9 @@ export function renderMemoryList() { return; } + const selectBtn = document.getElementById('memory-select-btn'); + if (selectBtn) selectBtn.disabled = false; + filtered.forEach(memory => { const item = document.createElement('div'); item.className = 'memory-item'; diff --git a/static/js/skills.js b/static/js/skills.js index f9c522afd..1a0c9701b 100644 --- a/static/js/skills.js +++ b/static/js/skills.js @@ -621,10 +621,16 @@ function renderSkillsList() { const showBuiltin = false; if (!sorted.length && !showBuiltin) { + const selectBtn = document.getElementById('skills-select-btn'); + if (selectBtn) selectBtn.disabled = true; + if (_selectMode) _exitSelectMode(); container.innerHTML = `