<https://evidencedev.slack.com/archives/C023LRB9Z4...
# troubleshooting
b
I don't think you can use a value component inside an image quite like that. Does it work if you:
Copy code
![Logo]({all_teams.filter(d => d.team_abbrev === $page.params.ff_team)[0].logo_url})
b
no that doesn't seem to work, I get the same as the original value (if I paste the result directly in the .md it works)
b
Okay let me play around with something here
👍 1
Okay got it
You'll need to use raw HTML syntax for this in this case:
Copy code
<img src="{all_teams.filter(d => d.team_abbrev === $page.params.ff_team)[0].logo_url}" alt=logo>
b
It works! thank you, I was heading that direction but my JS/HTML knowledge is..limited
b
Yes, we should make this easier - you shouldnt need to resort to HTML for this!