diff --git a/js/main.js b/js/main.js index af8ac29..606c9e3 100644 --- a/js/main.js +++ b/js/main.js @@ -989,7 +989,7 @@ function displayPointsFromApi(points) { } if (typeof feature.properties.tags['cuisine'] !== typeof undefined && feature.properties.tags['cuisine'].length) { - cuisine = ' - cuisine: ' + (feature.properties.tags['cuisine'] | ''); + cuisine = ` - cuisine: ${feature.properties.tags['cuisine'] | ''}`; } let html = ' ' + rest_name + ' ' + cuisine + '' +