Skip to content

Commit

Permalink
Changed. Take only text for label content.
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorfhurtado committed Sep 23, 2019
1 parent 9937946 commit 69b96f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- Take only text for label content.

## [0.2.0] - 2019-05-16
### Added
Expand Down
2 changes: 1 addition & 1 deletion src/bigcommerce/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Helpers = {
return null;
}
return tabs.push({
key: cells[0].innerHTML,
key: cells[0].textContent,
description: cells[1].innerHTML,
});
});
Expand Down

0 comments on commit 69b96f2

Please sign in to comment.