Skip to content

Commit

Permalink
#233 adjusted mergerequest type
Browse files Browse the repository at this point in the history
  • Loading branch information
maerzman committed Jul 11, 2024
1 parent 97fe26a commit 26b3318
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 0 additions & 1 deletion binocular-frontend/src/components/BubbleChart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export default class BubbleChart extends React.Component<Props, State> {
}

async updateElement() {
console.log(this.props.data);
this.visualizeData();
}

Expand Down
9 changes: 9 additions & 0 deletions binocular-frontend/src/types/dbTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,13 @@ export interface MergeRequest {
state: string;
closedAt: string;
createdAt: string;
assignee: Author;
assignees: Author[];
reviewer: Author;
reviewers: Author[];
}

export interface Author {
login: string;
name: string;
}

0 comments on commit 26b3318

Please sign in to comment.