Skip to content

Commit 97b774e

Browse files
deployment targets don't refresh after changes.
1 parent cd86e98 commit 97b774e

File tree

1 file changed

+1
-1
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-resource-connector-lib/src/main/java/com/microsoft/azure/toolkit/intellij/connector/projectexplorer

1 file changed

+1
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-resource-connector-lib/src/main/java/com/microsoft/azure/toolkit/intellij/connector/projectexplorer/AzureFacetRootNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public AzureFacetRootNode(final AzureModule module, ViewSettings settings) {
6161
}
6262
});
6363
connection.subscribe(DeploymentTargetTopics.TARGET_APP_CHANGED, (DeploymentTargetTopics.TargetAppChanged) (m, app, action) -> {
64-
if (app.getName().equalsIgnoreCase(module.getName())) {
64+
if (m.getName().equalsIgnoreCase(module.getName())) {
6565
updateChildren();
6666
}
6767
});

0 commit comments

Comments
 (0)