Skip to content

Commit

Permalink
Fix for #172
Browse files Browse the repository at this point in the history
  • Loading branch information
raffazizzi committed Nov 6, 2024
1 parent d9358eb commit 3f883b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "romajs",
"version": "1.1.1",
"version": "1.1.2",
"description": "Roma: a TEI customization tool in React+Redux",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/containers/HomePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const mapDispatchToProps = (dispatch) => {
dispatch(receiveOdd(e.target.result, lang))
// 1. Convert to JSON via TEIGarage
dispatch(setLoadingStatus(i18n('2/3 Importing customization ODD...')))
dispatch(postToTEIGarage(e.target.result, teigarage.compile_json)).then(() => {
dispatch(postToTEIGarage(e.target.result, teigarage.compile_json(lang))).then(() => {
dispatch(setLoadingStatus(i18n('3/3 Importing full specification source...')))
// 2. Get p5subset.
dispatch(fetchLocalSource(`${datasource}/p5subset.json`))
Expand Down
2 changes: 1 addition & 1 deletion src/utils/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Roma version
export default '1.1.1'
export default '1.1.2'

0 comments on commit 3f883b2

Please sign in to comment.