fix ui wiki search

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-07-30 17:35:17 -04:00
parent 62e71c02b6
commit 43e30929ca
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ async function initChangelog() {
function wikiSearch(txt) {
log('wikiSearch', txt);
const url = `https://github.com/search?q=repo%3Avladmandic%2Fautomatic+${encodeURIComponent(txt)}&type=wikis`;
const url = `https://github.com/search?q=repo%3Avladmandic%2Fsdnext+${encodeURIComponent(txt)}&type=wikis`;
// window.open(url, '_blank').focus();
return txt;
}