Use Combine instead of VerticalCombine
This gets rid of the added SPAN-tag with ID.
This commit is contained in:
parent
40b6b97521
commit
740b54e476
1 changed files with 2 additions and 2 deletions
|
@ -131,10 +131,10 @@ export default class MoreScreen extends UIElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
this._component = new VerticalCombine([
|
|
||||||
intro,
|
intro,
|
||||||
new VerticalCombine(els),
|
|
||||||
tr.streetcomplete
|
tr.streetcomplete
|
||||||
|
this._component = new Combine([
|
||||||
|
new Combine(els),
|
||||||
]);
|
]);
|
||||||
return this._component.Render();
|
return this._component.Render();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue