Skip to content

Commit

Permalink
prepare for version 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbedouret committed Nov 29, 2019
1 parent 685c065 commit 39c5d4e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"tts",
"text-to-speech"
],
"homepage": "https://app.cboard.io",
"homepage": ".",
"private": false,
"license": "GPL-3.0-only",
"dependencies": {
Expand All @@ -34,6 +34,7 @@
"intl": "^1.2.5",
"ismobilejs": "^0.5.1",
"iso-639-1": "2.0.3",
"is-url": "1.2.4",
"jss": "^9.8.7",
"jss-rtl": "^0.2.3",
"jszip": "^3.1.5",
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
https://stats.g.doubleclick.net/
https://*.blob.core.windows.net/
https://www.madaportal.org/tawasol/
https://api.arasaac.org/api/
https://globalsymbols.com/api/
https://*.arasaac.org/
https://globalsymbols.com/
https://www.googletagmanager.com/
https://ssl.gstatic.com
blob:
Expand Down
4 changes: 2 additions & 2 deletions src/components/Board/Board.container.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,12 +472,12 @@ export class BoardContainer extends Component {
const boardExists = boards.find(b => b.id === tile.loadBoard);
if (boardExists) {
changeBoard(tile.loadBoard);
this.props.history.replace(tile.loadBoard);
this.props.history.push(tile.loadBoard);
} else {
const rboardExists = boards.find(b => b.name === tile.label);
if (rboardExists) {
changeBoard(rboardExists.id);
this.props.history.replace(rboardExists.id);
this.props.history.push(rboardExists.id);
} else {
showNotification(intl.formatMessage(messages.boardMissed));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class SymbolSearch extends PureComponent {
)
];
const arasaacSuggestions = data.map(
({ idPictogram, keywords: [keyword] }) => {
({ _id: idPictogram, keywords: [keyword] }) => {
return {
id: keyword.keyword,
src: `${ARASAAC_BASE_PATH_API}pictograms/${idPictogram}?${queryString.stringify(
Expand Down

0 comments on commit 39c5d4e

Please sign in to comment.