Skip to content

Commit bf08d63

Browse files
committed
[dev] gantt instance is now passed to custom form
1 parent a364012 commit bf08d63

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

docs/integrations/react/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,13 +348,15 @@ import React, { useState } from 'react';
348348

349349
export interface CustomLightboxProps {
350350
data: any;
351+
gantt: any;
351352
onSave: (task: any) => void;
352353
onCancel: () => void;
353354
onDelete: () => void;
354355
}
355356

356357
const CustomLightbox: React.FC<CustomLightboxProps> = ({
357358
data,
359+
gantt,
358360
onSave,
359361
onCancel,
360362
onDelete

0 commit comments

Comments
 (0)