We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[email protected] @slgobinath
Currently the desklet shows e.g.
Take out trash 6:00 PM – 6:00 PM
for events with zero duration. To reduce visual clutter change this to
Take out trash 6:00 PM
The required change to utility.js is simple:
utility.js
128c128,132 < return this.formatTime(this.startTime) + " - " + this.formatTime(this.endTime); --- > if (this.startTime === this.endTime) { > return this.formatTime(this.startTime); > } else { > return this.formatTime(this.startTime) + " - " + this.formatTime(this.endTime); > }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Desklet name and maintainer
[email protected] @slgobinath
What would you like to see?
Currently the desklet shows e.g.
Take out trash 6:00 PM – 6:00 PM
for events with zero duration. To reduce visual clutter change this to
Take out trash 6:00 PM
The required change to
utility.js
is simple:The text was updated successfully, but these errors were encountered: