diff --git a/src/app/components/sheet/sheet.component.ts b/src/app/components/sheet/sheet.component.ts index d2a28fc1..c02bf393 100644 --- a/src/app/components/sheet/sheet.component.ts +++ b/src/app/components/sheet/sheet.component.ts @@ -30,9 +30,7 @@ export interface DefaultScreenEmission { styleUrls: [ './../buttons.scss', './../views/time-and-rez.scss', './sheet.component.scss' ], - animations: [ modalAnimation, - textAppear, - metaAppear ] + animations: [ modalAnimation, textAppear, metaAppear ] }) export class SheetComponent implements OnInit { diff --git a/src/app/components/views/clip/clip.component.ts b/src/app/components/views/clip/clip.component.ts index 9b44ecc9..1b94fc92 100644 --- a/src/app/components/views/clip/clip.component.ts +++ b/src/app/components/views/clip/clip.component.ts @@ -19,8 +19,7 @@ import { metaAppear, textAppear } from '../../../common/animations'; './clip.component.scss', '../selected.scss' ], - animations: [ textAppear, - metaAppear ] + animations: [ textAppear, metaAppear ] }) export class ClipComponent implements OnInit { diff --git a/src/app/components/views/filmstrip/filmstrip.component.ts b/src/app/components/views/filmstrip/filmstrip.component.ts index f5de7c49..7c6a0f52 100644 --- a/src/app/components/views/filmstrip/filmstrip.component.ts +++ b/src/app/components/views/filmstrip/filmstrip.component.ts @@ -19,8 +19,7 @@ import type { RightClickEmit, VideoClickEmit } from '../../../../../interfaces/s '../selected.scss', './filmstrip.component.scss' ], - animations: [ textAppear, - metaAppear ] + animations: [ textAppear, metaAppear ] }) export class FilmstripComponent implements OnInit { diff --git a/src/app/components/views/full/full.component.ts b/src/app/components/views/full/full.component.ts index 0ff1ef0f..31075480 100644 --- a/src/app/components/views/full/full.component.ts +++ b/src/app/components/views/full/full.component.ts @@ -18,8 +18,7 @@ import type { RightClickEmit, VideoClickEmit } from '../../../../../interfaces/s '../film-and-full.scss', '../selected.scss' ], - animations: [ textAppear, - metaAppear ] + animations: [ textAppear, metaAppear ] }) export class FullViewComponent implements OnInit { diff --git a/src/app/components/views/thumbnail/thumbnail.component.html b/src/app/components/views/thumbnail/thumbnail.component.html index 36512398..b80a8a21 100644 --- a/src/app/components/views/thumbnail/thumbnail.component.html +++ b/src/app/components/views/thumbnail/thumbnail.component.html @@ -31,7 +31,7 @@
-
{{ video.fileSizeDisplay | folderSize }}
+
{{ video.fileSizeDisplay | folderSizePipe }}
= 1000) { return Math.floor(fileCount / 1000) + 'k'; } else { - return value; + return numberOfFiles; } } }