Compare commits

..

No commits in common. "a2c441bef2e16061c328da5a2de4b45077904d54" and "e33ae8a2477357321888d392a072c0b1f7a08e6e" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ import (
"time" "time"
) )
const VERSION = "v34" const VERSION = "v33"
const CONTEXT_USER = 1 const CONTEXT_USER = 1
const SYNC_PAGINATION = 200 const SYNC_PAGINATION = 200

View file

@ -577,7 +577,7 @@ class N2NodeNavigator extends CustomHTMLElement {
this.elChildren.replaceChildren(...childNodes) this.elChildren.replaceChildren(...childNodes)
}// }}} }// }}}
normalizeName(name) {// {{{ normalizeName(name) {// {{{
return name.toLowerCase().replaceAll(/\s+/g, '_') return name.toLowerCase().replaceAll(/[^-_#()a-zA-Z0-9]/g, '_')
}// }}} }// }}}
getSearchPath() {// {{{ getSearchPath() {// {{{
return this.fieldSearch.value.toLowerCase().split(/\s+/) return this.fieldSearch.value.toLowerCase().split(/\s+/)