Compare commits

..

No commits in common. "988e07f869e5a7756b73680c15506b22d1bd8628" and "b7a5609e919f4580831bcebac44f905968602121" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View file

@ -61,9 +61,6 @@ declare global {
cover: string; cover: string;
name_it: string; name_it: string;
name_en: string; name_en: string;
/* Sometimes from API comes 'title' instead of 'name' :c */
title_it: string;
title_en: string;
description_it: string; description_it: string;
description_en: string; description_en: string;
route_category_id: number; route_category_id: number;

View file

@ -5,7 +5,7 @@
</script> </script>
<a href="/routes/{route.id}"> <a href="/routes/{route.id}">
<div id="image" style:background-image="url({PUBLIC_BACKEND_URL}{route.cover})" /> <div id="image" style:background-image="url({route.cover})" />
<div id='path-holder'> <div id='path-holder'>
<p class='path-name'>{route.title_it}</p> <p class='path-name'>{route.title_it}</p>
</div> </div>