Compare commits

..

No commits in common. "main" and "v33" have entirely different histories.
main ... v33

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+/)