Skip to content

Commit a9e687c

Browse files
committed
Use the dedicated ICON_CONNECTOR to represent a connector in the dashboard (#291)
1 parent be1072d commit a9e687c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

client/src/com/mirth/connect/client/ui/TagTreeCellRenderer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ public Component getTreeCellRendererComponent(JTree tree, Object value, boolean
108108
if (status.getStatusType() == StatusType.CHANNEL) {
109109
icon = UIConstants.ICON_CHANNEL;
110110
channel = true;
111+
} else if (status.getStatusType() == StatusType.SOURCE_CONNECTOR || status.getStatusType() == StatusType.DESTINATION_CONNECTOR) {
112+
icon = UIConstants.ICON_CONNECTOR;
111113
}
112114
}
113115
} else if (value instanceof ChannelTableNode) {

0 commit comments

Comments
 (0)