Decode SVG content to a raw XML string regardless of encoding.
(source: NodeSourceResponse)
| 170 | |
| 171 | /** Decode SVG content to a raw XML string regardless of encoding. */ |
| 172 | function decodeSvgContent(source: NodeSourceResponse): string { |
| 173 | if (!source.binary) return source.content; |
| 174 | try { |
| 175 | return atob(source.content); |
| 176 | } catch { |
| 177 | return source.content; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | export default function NodeDetailsPanel({ |
| 182 | node, |