mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-02-04 07:13:25 +08:00
18 lines
273 B
Markdown
18 lines
273 B
Markdown
---
|
|
'@mermaid': patch
|
|
---
|
|
|
|
Fixed an issue when the mermaid classdiagram crashes when adding a . to the namespace.
|
|
Forexample
|
|
|
|
```mermaid
|
|
|
|
classDiagram
|
|
namespace Company.Project.Module {
|
|
class GenericClass~T~ {
|
|
+addItem(item: T)
|
|
+getItem() T
|
|
}
|
|
}
|
|
```
|