hamid-irannejad commented on issue #187:
URL: https://github.com/apache/age-viewer/issues/187#issuecomment-3146420952
> The first part i have solved installing babel/runtime by itself throught a
command `npm install @babel/runtime`
>
> But the second i still have issues with, i don't know why it happens
Thanks for your comment. I already solved my problem by searching the
literature and using AI.
Your comment is true for solving the first part of the problem. Should
install:
> npm install @babel/runtime
and then:
> cd $HOME/age-viewer/frontend/src/components/cypherresult/presentations/
Open CypherResultTable.jsx and find line 23. Replace the problematic import:
// OLD (problematic line):
import { uuid } from 'cytoscape/src/util';
// NEW (working solution):
import uuid from 'react-uuid';
and then:
> cd $HOME/age-viewer/frontend
npm install react-uuid
Finally:
> npm run start
This completely solves the error and opens the fully functional browser for
using.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]