Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply fixes from StyleCI #871

Merged
merged 1 commit into from
Apr 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions resources/js/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ export default {
});

let secondsElapsed = moment().diff(time, 'seconds');
let dayStart = moment('2018-01-01')
.startOf('day')
.seconds(secondsElapsed);
let dayStart = moment('2018-01-01').startOf('day').seconds(secondsElapsed);

if (secondsElapsed > 300) {
return moment(time).fromNow(true);
Expand All @@ -50,9 +48,7 @@ export default {
* Show the time in local time.
*/
localTime(time) {
return moment(time)
.local()
.format('MMMM Do YYYY, h:mm:ss A');
return moment(time).local().format('MMMM Do YYYY, h:mm:ss A');
},

/**
Expand Down