Skip to content

Use the dedicated ICON_CONNECTOR to represent a connector in the dashboard#292

Open
sbraconnier wants to merge 1 commit intoOpenIntegrationEngine:mainfrom
sbraconnier:feature/icon-connector
Open

Use the dedicated ICON_CONNECTOR to represent a connector in the dashboard#292
sbraconnier wants to merge 1 commit intoOpenIntegrationEngine:mainfrom
sbraconnier:feature/icon-connector

Conversation

@sbraconnier
Copy link
Copy Markdown
Contributor

Fix #291

In the TagTreeCellRenderer class, this block (line 108):

if (status.getStatusType() == StatusType.CHANNEL) {
    icon = UIConstants.ICON_CHANNEL;
    channel = true;
}

has been changed to this:

if (status.getStatusType() == StatusType.CHANNEL) {
    icon = UIConstants.ICON_CHANNEL;
    channel = true;
} else if (status.getStatusType() == StatusType.SOURCE_CONNECTOR || status.getStatusType() == StatusType.DESTINATION_CONNECTOR) {
    icon = UIConstants.ICON_CONNECTOR;
}

The result is this:

Icon_Connector_Screenshot 2026-04-08 004221

Instead of this:

Icon_Channel_Screenshot 2026-04-08 004326

@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 8, 2026

Test Results

  111 files  ±0    214 suites  ±0   7m 2s ⏱️ + 1m 10s
  654 tests ±0    654 ✅ ±0  0 💤 ±0  0 ❌ ±0 
1 308 runs  ±0  1 308 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit 9bb72e6. ± Comparison against base commit be1072d.

♻️ This comment has been updated with latest results.

…board (OpenIntegrationEngine#291)

Signed-off-by: sbraconnier <simonbraconnier@gmail.com>
@sbraconnier sbraconnier force-pushed the feature/icon-connector branch from a9e687c to 9bb72e6 Compare April 8, 2026 12:41
@sbraconnier sbraconnier marked this pull request as ready for review April 8, 2026 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Use the dedicated ICON_CONNECTOR in the dashboard to represent a connector.

1 participant