Use the correct path for linking to icons.
This commit is contained in:
parent
7e59bfbb6b
commit
2f5c75a68f
|
@ -74,7 +74,7 @@ export default class ReleasePage extends Component<Props, State> {
|
||||||
const urls = release.links.map((link) => {
|
const urls = release.links.map((link) => {
|
||||||
let linkImage;
|
let linkImage;
|
||||||
if (link.icon !== undefined) {
|
if (link.icon !== undefined) {
|
||||||
linkImage = html`<img src="/assets/icons/${link.icon}" />`;
|
linkImage = html`<img src="/icons/${link.icon}" />`;
|
||||||
}
|
}
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
|
|
Loading…
Reference in New Issue