Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

JBEAP-9976 Do not pre-select server-group when assigning a deployment… #409

Open
wants to merge 1 commit into
base: 2.8.24
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
package org.jboss.as.console.client.v3.deployment.wizard;

import com.google.gwt.cell.client.CheckboxCell;
import com.google.gwt.core.client.GWT;
import com.google.gwt.safehtml.shared.SafeHtmlUtils;
import com.google.gwt.user.cellview.client.Column;
import com.google.gwt.user.cellview.client.TextColumn;
Expand All @@ -38,8 +37,6 @@
import com.google.gwt.view.client.MultiSelectionModel;
import com.google.gwt.view.client.ProvidesKey;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.core.UIConstants;
import org.jboss.as.console.client.core.UIMessages;
import org.jboss.as.console.client.v3.deployment.Content;
import org.jboss.as.console.client.v3.deployment.DomainDeploymentFinder;
import org.jboss.ballroom.client.widgets.forms.CheckBoxItem;
Expand Down Expand Up @@ -176,7 +173,6 @@ public void open(final Content content, final List<String> serverGroups) {
intro.setText(Console.MESSAGES.chooseServerGroupsForAssigning(content.getName()));
dataProvider.setList(serverGroups);
selectionModel.clear();
table.selectDefaultEntity();
window.center();
}

Expand Down