Skip to content

Commit

Permalink
v1.19.1 - Add data-test-id to country selector list element (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
xander-marjoram authored May 7, 2019
1 parent df6bc37 commit 2a08b75
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


v1.19.1
------------------------------
*May 1, 2019*

### Added
- `data-test-id` to country selector list


v1.19.0
------------------------------
*April 30, 2019*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@justeat/f-footer",
"description": "Fozzie footer – Footer Component for Just Eat projects",
"version": "1.19.0",
"version": "1.19.1",
"main": "dist/js/index.js",
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion src/templates/footer/partials/country-selector.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{!-- {{> je-svg-sprite cssClass="c-countrySelector-chevron c-icon--chevron--small" spriteUrl=(concat svgSpriteModel.iconsSpritePath "#icons-arrows-chevron") }} --}}
<img class="c-countrySelector-chevron c-icon--chevron--small" src="{{ miscIconPaths.chevronIconUrl }}" alt="" />
</button>
<ul class="c-countrySelector-list is-hidden" data-toggle-name="countrySelector-list">
<ul class="c-countrySelector-list is-hidden" data-toggle-name="countrySelector-list" data-test-id="countrySelector-list">
{{#each (i18n "countries") as | country |}}
<li>
<a class="c-countrySelector-link" href="{{ country.siteUrl }}">
Expand Down

0 comments on commit 2a08b75

Please sign in to comment.