Skip to content

Commit

Permalink
chore: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
gtk-grafana committed Jan 6, 2025
1 parent d0ae06c commit 5261e2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Table/TableProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface TableProviderProps {
addFilter: (filter: AdHocVariableFilter) => void;
selectedLine?: SelectedTableRow;
timeRange?: TimeRange;
panelWrap: React.RefObject<HTMLDivElement>;
panelWrap: React.RefObject<HTMLDivElement | null>;
clearSelectedLine: () => void;
setUrlTableBodyState: (logLineState: LogLineState) => void;
urlTableBodyState?: LogLineState;
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Table/TableWrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface TableWrapProps {
urlColumns: string[];
urlTableBodyState?: LogLineState;
setUrlColumns: (columns: string[]) => void;
panelWrap: React.RefObject<HTMLDivElement>;
panelWrap: React.RefObject<HTMLDivElement | null>;
clearSelectedLine: () => void;
setUrlTableBodyState: (logLineState: LogLineState) => void;
}
Expand Down

0 comments on commit 5261e2f

Please sign in to comment.