diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-26 14:43:04 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-26 14:43:04 +0100 |
commit | e9112baa067850cbbd460060347cb1987e389902 (patch) | |
tree | 72737af834f7c6bbb14c40ab2e6ba125a5d0cf09 /frontend/src/app/_data/Dataset.ts | |
parent | d9742d0413a9b3cf0b530b275bd97dc0fe39c346 (diff) |
Dodat atribut hasHeader u klasi Dataset (front i back) i iskoriscen u tabelarnom prikazu (datatable component).
Diffstat (limited to 'frontend/src/app/_data/Dataset.ts')
-rw-r--r-- | frontend/src/app/_data/Dataset.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/app/_data/Dataset.ts b/frontend/src/app/_data/Dataset.ts index 665df932..c5b56957 100644 --- a/frontend/src/app/_data/Dataset.ts +++ b/frontend/src/app/_data/Dataset.ts @@ -11,6 +11,7 @@ export default class Dataset { public dateCreated: Date = new Date(), public lastUpdated: Date = new Date(), public username: string = '', - public delimiter: string = '' + public delimiter: string = '', + public hasHeader: boolean = true ) { } }
\ No newline at end of file |