Skip to content

Commit

Permalink
clean up all sorts of formatting
Browse files Browse the repository at this point in the history
a commit i pulled in had a formatting issue; this solves it and some other ones
  • Loading branch information
bnchdrff committed Sep 27, 2018
1 parent 781ea3b commit 2a87a10
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions src/app/components/modules/Modals.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ class Modals extends React.Component {
<p>
<strong style={{ color: 'red' }}>
Please Note:{' '}
</strong>The Steem blockchain was upgraded
on September 25th. You may experience trouble
</strong>The Steem blockchain was upgraded on
September 25th. You may experience trouble
posting and transacting while the new bandwidth
system stabilizes over the next several days. It may
be best to wait until this process completes
system stabilizes over the next several days. It
may be best to wait until this process completes
before buying more Steem Power.
</p>
</div>
Expand Down
4 changes: 1 addition & 3 deletions src/app/components/modules/UserWallet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,7 @@ class UserWallet extends React.Component {
// set dynamic secondary wallet values
const sbdInterest = this.props.sbd_interest / 100;
const sbdMessage = (
<span>
{tt('userwallet_jsx.tradeable_tokens_transferred')}
</span>
<span>{tt('userwallet_jsx.tradeable_tokens_transferred')}</span>
);

const reward_steem =
Expand Down
24 changes: 12 additions & 12 deletions src/app/locales/counterpart/ja.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ module.exports = {

formats: {
date: {
'default': '%a, %e %b %Y',
long: '%A, %B %o, %Y',
short: '%e %b'
default: '%a, %e %b %Y',
long: '%A, %B %o, %Y',
short: '%e %b',
},

time: {
'default': '%H:%M',
long: '%H:%M:%S %z',
short: '%H:%M'
default: '%H:%M',
long: '%H:%M:%S %z',
short: '%H:%M',
},

datetime: {
'default': '%a, %e %b %Y %H:%M',
long: '%A, %B %o, %Y %H:%M:%S %z',
short: '%e %b %H:%M'
}
}
}
default: '%a, %e %b %Y %H:%M',
long: '%A, %B %o, %Y %H:%M:%S %z',
short: '%e %b %H:%M',
},
},
},
};
4 changes: 3 additions & 1 deletion src/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ app.use(function*(next) {
this.body = {
status: 'ok',
docker_tag: process.env.DOCKER_TAG ? process.env.DOCKER_TAG : false,
source_commit: process.env.SOURCE_COMMIT ? process.env.SOURCE_COMMIT : false,
source_commit: process.env.SOURCE_COMMIT
? process.env.SOURCE_COMMIT
: false,
};
return;
}
Expand Down

0 comments on commit 2a87a10

Please sign in to comment.