Skip to content

Commit 1552a3f

Browse files
committed
Merge branch 'dev'
2 parents f759371 + 4d54f50 commit 1552a3f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,18 @@ mysql://username:mypassword@localhost:3306/mydb
6464
### Build the Application
6565

6666
```bash
67-
npm build
67+
npm run build
6868
```
6969

70-
*The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**.*
70+
_The build step will create tables in your database if you are installing for the first time. It will also create a login user with username **admin** and password **umami**._
7171

7272
### Start the Application
7373

7474
```bash
7575
npm run start
7676
```
7777

78-
*By default, this will launch the application on `http://localhost:3000`. You will need to either [proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly.*
78+
_By default, this will launch the application on `http://localhost:3000`. You will need to either [proxy](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/) requests from your web server or change the [port](https://nextjs.org/docs/api-reference/cli#production) to serve the application directly._
7979

8080
---
8181

src/queries/sql/reports/getAttribution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async function relationalQuery(
8484
sum(coalesce(cast(number_value as decimal(10,2)), cast(string_value as decimal(10,2)))) value
8585
from event_data ed
8686
join website_event we
87-
on we.event_id = ed.website_event_Id
87+
on we.event_id = ed.website_event_id
8888
and we.website_id = ed.website_id
8989
join (select website_event_id
9090
from event_data
@@ -395,10 +395,10 @@ async function clickhouseQuery(
395395
fbclid != '', 'Facebook / Meta',
396396
msclkid != '', 'Microsoft Ads',
397397
ttclid != '', 'TikTok Ads',
398-
li_fat_id != '', ' LinkedIn Ads',
398+
li_fat_id != '', 'LinkedIn Ads',
399399
twclid != '', 'Twitter Ads (X)','') name,
400400
${currency ? 'sum(e.value)' : 'uniqExact(we.session_id)'} value
401-
from model m
401+
from model fm
402402
join website_event we
403403
on we.created_at = m.created_at
404404
and we.session_id = m.session_id

0 commit comments

Comments
 (0)