Skip to content

Commit

Permalink
Fixing inverted expand collapse icons (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
aasimkhan30 authored Aug 12, 2024
1 parent 9f015f9 commit 15d17c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "azdataGraph",
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
"version": "0.0.67",
"version": "0.0.68",
"homepage": "https://github.com/microsoft/azdataGraph",
"author": "Microsoft",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions src/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ td.mxPopupMenuIcon {
}

.graph-cell .graph-icon-badge-expand.expanded {
background-image: url('../images/expanded.gif');
background-image: url('../images/collapsed.gif');
}

.graph-cell .graph-icon-badge-expand.collapsed {
background-image: url('../images/collapsed.gif');
background-image: url('../images/expanded.gif');
}

.graph-cell-cost{
Expand Down

0 comments on commit 15d17c2

Please sign in to comment.