add and edit
This commit is contained in:
@@ -24,7 +24,7 @@ interface ItemForLane {
|
||||
}
|
||||
|
||||
function assignLane(
|
||||
existing: ItemForLane[],
|
||||
existing: Array<ItemForLane>,
|
||||
newStart: Date,
|
||||
newEnd: Date | null
|
||||
): number {
|
||||
@@ -57,7 +57,7 @@ async function main() {
|
||||
|
||||
if (items.length === 0) continue;
|
||||
|
||||
const assigned: ItemForLane[] = [];
|
||||
const assigned: Array<ItemForLane> = [];
|
||||
let updated = 0;
|
||||
|
||||
for (const item of items) {
|
||||
|
||||
Reference in New Issue
Block a user