Skip to content

Commit

Permalink
fix missing dep for code profiling tests and minor update to frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Krande committed Sep 27, 2024
1 parent d1d7dfa commit dc5d96a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci-code-profiling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
pytest
pytest-benchmark
pytest-codspeed
python-flatbuffers
- name: Install latest version
run: |
Expand Down
Binary file modified src/ada/visit/rendering/resources/index.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const TreeViewComponent: React.FC = () => {


const renderTree = (nodes: TreeNode) => (
<TreeItem key={nodes.id} itemId={nodes.id} label={nodes.name}>
<TreeItem key={nodes.id} itemId={nodes.id} label={nodes.name} sx={{ color: "white"}}>
{Array.isArray(nodes.children)
? nodes.children.map((node: TreeNode) => renderTree(node))
: null}
Expand Down

0 comments on commit dc5d96a

Please sign in to comment.