Fix distribution tag id

Signed-off-by: Melanie Retter <melanie.retter@bosch-si.com>
This commit is contained in:
Melanie Retter
2017-05-16 10:39:52 +02:00
parent 66f9c69457
commit 3d5e067312

View File

@@ -27,7 +27,6 @@ import org.eclipse.hawkbit.ui.utils.SPUILabelDefinitions;
import org.eclipse.hawkbit.ui.utils.UIComponentIdProvider;
import org.eclipse.hawkbit.ui.utils.UINotification;
import org.eclipse.hawkbit.ui.utils.VaadinMessageSource;
import org.springframework.util.StringUtils;
import org.vaadin.addons.lazyquerycontainer.BeanQueryFactory;
import org.vaadin.addons.lazyquerycontainer.LazyQueryContainer;
import org.vaadin.spring.events.EventBus.UIEventBus;
@@ -95,7 +94,7 @@ public class DistributionTagButtons extends AbstractFilterButtons implements Ref
@Override
protected String createButtonId(final String name) {
return StringUtils.trimAllWhitespace(name);
return name;
}
@Override