Skip to content

Commit 0771fd3

Browse files
Merge remote-tracking branch 'origin/endgame-202205' into endgame-202205.next
2 parents 0dc986c + 4cbbd4a commit 0771fd3

File tree

2 files changed

+2
-1
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-appservice/src/main/java/com/microsoft/azure/toolkit/intellij/legacy/webapp/runner/webappconfig
  • Utils/azure-toolkit-ide-libs/azure-toolkit-ide-applicationinsights-lib/src/main/java/com/microsoft/azure/toolkit/ide/applicationinsights

2 files changed

+2
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/azure-intellij-plugin-appservice/src/main/java/com/microsoft/azure/toolkit/intellij/legacy/webapp/runner/webappconfig/WebAppConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public void setAppServicePlanName(String name) {
274274
}
275275

276276
public void setAppServicePlanResourceGroupName(String name) {
277-
webAppSettingModel.setAppServicePlanName(name);
277+
webAppSettingModel.setAppServicePlanResourceGroupName(name);
278278
}
279279

280280
public String getRegion() {

Utils/azure-toolkit-ide-libs/azure-toolkit-ide-applicationinsights-lib/src/main/java/com/microsoft/azure/toolkit/ide/applicationinsights/ApplicationInsightsNodeProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public Node<?> createNode(@Nonnull Object data, @javax.annotation.Nullable Node<
4747
final ApplicationInsight insight = (ApplicationInsight) data;
4848
return new Node<>(insight).view(new AzureResourceLabelView<>(insight))
4949
.inlineAction(ResourceCommonActionsContributor.PIN)
50+
.doubleClickAction(ResourceCommonActionsContributor.OPEN_PORTAL_URL)
5051
.actions(ApplicationInsightsActionsContributor.INSIGHT_ACTIONS);
5152
}
5253
return null;

0 commit comments

Comments
 (0)