mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
Use timestamp to generate uniq id
This commit is contained in:
parent
a0b589979d
commit
5b6dfb01a6
@ -7,8 +7,6 @@ import he from 'he'
|
||||
import mermaidAPI from './mermaidAPI'
|
||||
import { logger } from './logger'
|
||||
|
||||
let nextId = 0
|
||||
|
||||
/**
|
||||
* ## init
|
||||
* Function that goes through the document to find the chart definitions in there and render them.
|
||||
@ -87,7 +85,7 @@ const init = function () {
|
||||
continue
|
||||
}
|
||||
|
||||
const id = 'mermaidChart' + nextId++
|
||||
const id = `mermaid-${Date.now()}`
|
||||
|
||||
// Fetch the graph definition including tags
|
||||
txt = element.innerHTML
|
||||
|
Loading…
x
Reference in New Issue
Block a user