Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' into fixes-439
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahalwy authored Jan 9, 2017
2 parents caf33ac + df624a9 commit 868662f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/containers/Surah/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class Surah extends Component {
return `Surat ${surah.name.simple} [verse ${params.range}]`;
}

return `${surah.info.shortDescription} This Surah has ${surah.ayat} ayahs and resides between pages ${surah.page[0]} to ${surah.page[1]} in the Quran.`; // eslint-disable-line max-len
return `${surah.info ? surah.info.shortDescription : ''} This Surah has ${surah.ayat} ayahs and resides between pages ${surah.page[0]} to ${surah.page[1]} in the Quran.`; // eslint-disable-line max-len
}

renderPagination() {
Expand Down
6 changes: 3 additions & 3 deletions src/styles/bootstrap.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ module.exports = {
"scripts": {
"transition": false,
"alert": false,
"button": false,
"button": true,
"carousel": false,
"collapse": false,
"dropdown": false,
"dropdown": true,
"modal": false,
"tooltip": false,
"tooltip": true,
"popover": false,
"scrollspy": false,
"tab": false,
Expand Down

0 comments on commit 868662f

Please sign in to comment.