Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
isamu committed Jun 20, 2024
1 parent 3721bbb commit 3e8393a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ export default defineComponent({
const download = () => {
const data = graph.serialize();
const graphData = liteGraph2GraphData(data, lite2graph);
const graphData = liteGraph2GraphData(data, lite2graph as any);
console.log(graphData);

Check warning on line 87 in src/views/Home.vue

View workflow job for this annotation

GitHub Actions / build (20.x)

Unexpected console statement
console.log(JSON.stringify(graphData, 2, null));
console.log(JSON.stringify(graphData, null, 2));

Check warning on line 88 in src/views/Home.vue

View workflow job for this annotation

GitHub Actions / build (20.x)

Unexpected console statement
};
return {
Expand Down

0 comments on commit 3e8393a

Please sign in to comment.