We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609f29e commit e13fee1Copy full SHA for e13fee1
src/widget/widget.service.ts
@@ -31,7 +31,7 @@ export class WidgetService {
31
generate_indexes(count: number) {
32
const array = [];
33
for (let index = 1; index <= count; index++) {
34
- array.push(`<tspan x="${index < 10 ? '10' : '0'}" dy="${index === 1 ? '0' : '19'}">${index}</tspan>`);
+ array.push(`<tspan x="${index < 10 ? '9' : '0'}" dy="${index === 1 ? '0' : '19'}">${index}</tspan>`);
35
}
36
37
return array.join('\n');
0 commit comments