Skip to content

Commit

Permalink
Change algorithm for assigning variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
vitvakatu committed Nov 2, 2023
1 parent e2f23e7 commit 3ebb775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui2/src/stores/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ export const useGraphStore = defineStore('graph', () => {
})

function randomString() {
return Math.random().toString(36).substring(2, 10)
return 'operator' + Math.round(Math.random() * 100000)
}

export interface Node {
Expand Down

0 comments on commit 3ebb775

Please sign in to comment.