mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
standardize date types
This commit is contained in:
@@ -5,6 +5,7 @@ import { Folder } from '../domain/folder';
|
||||
export class FolderView implements View {
|
||||
id: string = null;
|
||||
name: string;
|
||||
revisionDate: Date;
|
||||
|
||||
constructor(f?: Folder) {
|
||||
if (!f) {
|
||||
@@ -12,5 +13,6 @@ export class FolderView implements View {
|
||||
}
|
||||
|
||||
this.id = f.id;
|
||||
this.revisionDate = f.revisionDate;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user