Update template.component.ts

This commit is contained in:
piotrpekala7 2020-05-05 21:40:56 +02:00
parent e01c06a54e
commit 5600364583

View File

@ -103,6 +103,6 @@ export class TemplateComponent implements OnInit {
}
getImageSourceForTemplate(template: Template) {
return `http://${this.server.host}:${this.server.port}/v2${template.symbol.substring(1)}/raw`;
return `http://${this.server.host}:${this.server.port}/v2/symbols/${template.symbol}/raw`;
}
}