mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fix regex.
This commit is contained in:
parent
922c3acab3
commit
cd400bcef2
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ function getTimestampInterval(field) {
|
|||
|
||||
function getSanitizedColumns(columns) {
|
||||
return Object.keys(columns).reduce((acc, keyName) => {
|
||||
const sanitizedProperty = keyName.replace(/[\w\s_]/g, '');
|
||||
const sanitizedProperty = keyName.replace(/[^\w\s_]/g, '');
|
||||
|
||||
acc[sanitizedProperty] = columns[keyName];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue