Skip to content

Commit

Permalink
Merge pull request #418 from plotly/fix-http-equiv
Browse files Browse the repository at this point in the history
Fix http-equiv typo.
  • Loading branch information
T4rk1n authored Oct 17, 2018
2 parents 71fb742 + d649ce0 commit 02eb3f2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.28.3 - 2018-10-17
## Fixed
- Fix http-equiv typo [#418](https://github.com/plotly/dash/pull/418)

## 0.28.2 - 2018-10-05
## Added
- Moved `add_url` function definition out of `Dash.__init__` [#377](https://github.com/plotly/dash/pull/377)
Expand Down
4 changes: 3 additions & 1 deletion dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,9 @@ def _generate_meta_html(self):

tags = []
if not has_ie_compat:
tags.append('<meta equiv="X-UA-Compatible" content="IE=edge">')
tags.append(
'<meta http-equiv="X-UA-Compatible" content="IE=edge">'
)
if not has_charset:
tags.append('<meta charset="UTF-8">')

Expand Down
2 changes: 1 addition & 1 deletion dash/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.28.2'
__version__ = '0.28.3'
1 change: 1 addition & 0 deletions tests/development/test_component_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ def tearDown(self):
os.remove(METADATA_PATH)
shutil.rmtree('default_namespace')

@unittest.skip('Broken - https://github.com/plotly/dash/issues/419')
def test_loadcomponents(self):
MyComponent_runtime = generate_class(
'MyComponent',
Expand Down

0 comments on commit 02eb3f2

Please sign in to comment.