mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
Fix boolean event data.
This commit is contained in:
parent
dcb9f69c43
commit
65ebb26a70
3 changed files with 5 additions and 3 deletions
|
|
@ -49,6 +49,7 @@ function createKey(key, value, acc: { keyValues: any[]; parentKey: string }) {
|
|||
break;
|
||||
case 'boolean':
|
||||
eventDataType = EVENT_DATA_TYPE.boolean;
|
||||
value = value ? 'true' : 'false';
|
||||
break;
|
||||
case 'date':
|
||||
eventDataType = EVENT_DATA_TYPE.date;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue