Browse Source

Fix date pipe names

pull/16237/head
Mahmut Gundogdu 3 years ago
committed by GitHub
parent
commit
241733de01
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      docs/en/UI/Angular/DateTime-Format-Pipe.md

6
docs/en/UI/Angular/DateTime-Format-Pipe.md

@ -14,21 +14,21 @@ ShortDate, ShortTime and ShortDateTime format data like angular's data pipe but
# ShortDate Pipe
```html
<span> {{today | shortDatePipe }}</span>
<span> {{today | shortDate }}</span>
```
# ShortTime Pipe
```html
<span> {{today | shortTimePipe }}</span>
<span> {{today | shortTime }}</span>
```
# ShortDateTime Pipe
```html
<span> {{today | shortDateTimePipe }}</span>
<span> {{today | shortDateTime }}</span>
```
}%}
Loading…
Cancel
Save