Closed
Description
I have a page with a mermaid diagram embedded. In place of the diagram it says (edit or view mode):
If I refresh the page, it then renders OK. Quite a blocker to seamless use! This is on your cloud-hosted implementation
I don't think it is code-dependent (race condition with browser loading?) but here is an example:
flowchart TD
U([web-gui])
subgraph "xxxxxx Service"
R["xxxxxx-rest-api"]
RDB[(xxxxxxxxxxxxxxx)]
R <--> RDB
end
subgraph "xxxxxxxxxxxx"
A["xxxxxxxx"]
E[(processed_events.json)]
T[Templates.json]
A --> E
T --> A
end
subgraph "xxxxxx Service"
CW["xxxxxx-grpc-api server\n + xxxxxx client"]
D[("xxxxxr Database (TTTTTTTT)")]
CW -->|"batch:\ntransfers[1..8090]"| D
D -->|"xxxxxx[]"| CW
end
U -->|"read request"| R
R -->|"lookup xxxxxx"| CW
subgraph "performance testing"
X[transfers]
G[xxxxxxx.py]
PT["xxxxxxx.py\n + xxxxxxxx client"]
G --> X --> PT --> D
end