Use Combine instead of VerticalCombine

This gets rid of the added SPAN-tag with ID.
This commit is contained in:
Tobias 2021-01-17 21:11:57 +01:00
parent 40b6b97521
commit 740b54e476

View file

@ -131,10 +131,10 @@ export default class MoreScreen extends UIElement {
}
this._component = new VerticalCombine([
intro,
new VerticalCombine(els),
tr.streetcomplete
this._component = new Combine([
new Combine(els),
]);
return this._component.Render();
}