Skip to content

Commit e54850a

Browse files
author
mbrill-nt
committed
#69 Fix Icon path & Bump Version
1 parent 930fe14 commit e54850a

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
All notable changes to this project will be documented in this file.
44

55

6+
## v4.0.2
7+
8+
Bug fix in icon path
9+
10+
611
## v4.0.1
12+
713
SumTimings now working as expected
814
Response Time Health now dsiplayed in node statistics
915
External Icons now use the correct path

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/panel/canvas/graph_canvas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ export default class CanvasDrawer {
539539
});
540540

541541
if (mapping) {
542-
const image = this._getAsset(mapping.filename, 'icons/' + mapping.filename + '.png');
542+
const image = this._getAsset(mapping.filename, mapping.filename + '.png');
543543
if (image != null) {
544544
const cX = node.position().x;
545545
const cY = node.position().y;

src/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Service Dependency Graph",
44
"id": "novatec-sdg-panel",
55
"info": {
6-
"version": "4.0.0",
6+
"version": "4.0.2",
77
"updated": "2021-02-03",
88
"description": "Service Dependency Graph panel for Grafana. Shows metric-based, dynamic dependency graph between services, indicates responsetime, load and error rate statistic for individual services and communication edges. Shows communication to external services, such as Web calls, database calls, message queues, LDAP calls, etc. Provides a details dialog for each selected service that shows statistics about incoming and outgoing traffic.",
99
"author": {

0 commit comments

Comments
 (0)