Skip to content

Commit

Permalink
Removed tooltip parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
hudson-newey committed Dec 7, 2023
1 parent 63ebea1 commit b67741b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ export class DatetimeComponent extends AbstractDatetimeComponent {

public tooltipValue(): string {
const fullDateTime = this.luxonDateTime.toFormat("yyyy-MM-dd HH:mm:ss");
const timezoneName = this.timezoneName();
const timezoneName = this.timezoneInformation();

return `${fullDateTime} (${timezoneName})`;
return `${fullDateTime} ${timezoneName}`;
}

public rawDateTime(): string {
return this.luxonDateTime.toISO();
}

protected timezoneName(): string {
protected timezoneInformation(): string {
let timezoneName: string;
let offsetValue: string;

Expand Down

0 comments on commit b67741b

Please sign in to comment.