Skip to content

Commit 1a4bb4b

Browse files
committed
FIxes
1 parent 5b3d477 commit 1a4bb4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/extensions/query-translator/clients/const.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const reportExampleQueries = {
7474
'Single Value': 'MATCH (n) RETURN COUNT(n)',
7575
'Gauge Chart': 'MATCH (c:CPU) WHERE c.id = 1 RETURN c.load_percentage * 100',
7676
'Raw JSON': 'MATCH (n) RETURN COUNT(n)',
77-
'Pie Chart': 'Match (n:Person)-[e]->(m:Movie) RETURN m.title as Title, COUNT(p) as People LIMIT 10',
77+
'Pie Chart': 'Match (p:Person)-[e]->(m:Movie) RETURN m.title as Title, COUNT(p) as People LIMIT 10',
7878
};
7979

8080
export const TASK_DEFINITION = `Task: Generate Cypher queries to query a Neo4j graph database based on the provided schema definition. These queries will be used inside NeoDash reports.

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import './index.pcss';
1111
import StyleConfig from './config/StyleConfig';
1212
import * as Sentry from '@sentry/react';
1313

14-
if (window.location.href == 'https://neodash.graphapp.io' || window.location.href == 'http://neodash.graphapp.io') {
14+
if (window.location.href == 'https://neodash.graphapp.io/' || window.location.href == 'http://neodash.graphapp.io/') {
1515
Sentry.init({
1616
dsn: 'https://[email protected]/4505397810167808',
1717
allowUrls: [/^https:\/\/neodash\.graphapp\.io/, /^http:\/\/neodash\.graphapp\.io/],

0 commit comments

Comments
 (0)