@@ -430,7 +430,7 @@ export class TextBlock extends Control {
} else {
while (characters.length && lineWidth > width) {
characters.pop();
- line = `${characters.join()}...`;
+ line = `${characters.join("")}...`;
lineWidth = context.measureText(line).width;
}