mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01: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…
Add table
Add a link
Reference in a new issue