@kylincloud/flamegraph 0.35.26 → 0.35.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kylincloud/flamegraph",
3
- "version": "0.35.26",
3
+ "version": "0.35.27",
4
4
  "description": "KylinCloud flamegraph renderer (Pyroscope-based)",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.node.cjs.js",
@@ -329,7 +329,7 @@ const getTableBody = ({
329
329
  const nameCell = (x: { name: string }) => (
330
330
  <button className="table-item-button">
331
331
  <div className="symbol-name" style={fitIntoTableCell(fitMode)}>
332
- {x.name}
332
+ <bdi dir="ltr">{x.name}</bdi>
333
333
  </div>
334
334
  </button>
335
335
  );