* FIXED: Resolved an issue where cache updates were not working properly.

* IMPROVED: Instead of updating the entire CNR cache at once, the process now divides it into 30-page queries.
* IMPROVED: Clicking on the titles of nodes that exist only in CNR now opens the GitHub repository link instead of the CNR link, where possible.
* ADDED: Added information about `extra_model_paths.yaml` to the README.md file.

https://github.com/ltdrdata/ComfyUI-Manager/issues/1457
This commit is contained in:
Dr.Lt.Data
2025-01-19 02:25:34 +09:00
parent 191bffedcb
commit c6153ea67d
8 changed files with 90 additions and 31 deletions

View File

@@ -975,7 +975,10 @@ export class CustomNodesManager {
}
const link = document.createElement('a');
link.href = rowItem.reference;
if(rowItem.originalData.repository)
link.href = rowItem.originalData.repository;
else
link.href = rowItem.reference;
link.target = '_blank';
link.innerHTML = `<b>${title}</b>`;
container.appendChild(link);