Commit d8feb43a2a27b02949d2f8dde20ee0f95addd05f
1 parent
ceba13da
Exists in
master
no message
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/dashboard/short.ts
... | ... | @@ -5,6 +5,6 @@ import { PipeTransform, Pipe } from "@angular/core"; |
5 | 5 | }) |
6 | 6 | export class ShortPipe implements PipeTransform { |
7 | 7 | transform(value: string): string { |
8 | - return value.substr(0, 30) + ' ...'; | |
8 | + return value.substr(0, 25) + ' ...'; | |
9 | 9 | } |
10 | 10 | } |
11 | 11 | \ No newline at end of file | ... | ... |