Browse Source

Fixes date format property

main
Eric Amodio 2 years ago
parent
commit
782f9dba4f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/webviews/apps/shared/components/commit/commit-identity.ts

+ 1
- 1
src/webviews/apps/shared/components/commit/commit-identity.ts View File

@ -65,7 +65,7 @@ export class CommitIdentity extends LitElement {
/></a>
<a class="name" href="${this.email ? `mailto:${this.email}` : '#'}">${this.name}</a>
<span class="date"
>${this.actionLabel} <formatted-date date=${this.date} dateFormat="${this.dateFormat}"></formatted-date
>${this.actionLabel} <formatted-date date=${this.date} format="${this.dateFormat}"></formatted-date
></span>
`;
}

Loading…
Cancel
Save