Add dataenddate
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
This commit is contained in:
parent
277dc7051e
commit
b0ff54d157
@ -18,3 +18,8 @@
|
||||
.custom-day.faded {
|
||||
background-color: rgba(2, 117, 216, 0.5);
|
||||
}
|
||||
|
||||
ngb-datepicker {
|
||||
overflow: hidden;
|
||||
max-width: calc(100vw - 3em);
|
||||
}
|
@ -18,6 +18,7 @@ export class Item implements IItem {
|
||||
public created?: Date;
|
||||
public updated?: Date;
|
||||
public dataDate?: Date;
|
||||
public dataEndDate?: Date;
|
||||
public itemType?: string;
|
||||
public sourceTask?: string;
|
||||
public size?: number;
|
||||
|
@ -22,6 +22,7 @@ export class FolderService {
|
||||
item.created = new Date(Date.parse(item.created));
|
||||
item.updated = new Date(Date.parse(item.updated));
|
||||
item.dataDate = new Date(Date.parse(item.dataDate));
|
||||
item.dataEndDate = new Date(Date.parse(item.dataEndDate));
|
||||
return item;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user