Skip to content

Commit

Permalink
fix: tooltip and remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pbullhove committed Mar 8, 2024
1 parent 3f55a15 commit 4a06358
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,16 @@ export function DataGridActions(props: DataGridActionsProps) {
)}
</>
)}
<Styled.ActionRowButton
aria-haspopup
aria-expanded={isMenuOpen}
onClick={() => setIsMenuOpen(true)}
ref={setMenuButtonAnchor}
>
<Icon size={16} data={settings} />
</Styled.ActionRowButton>
<Tooltip title='Import and Export'>
<Styled.ActionRowButton
aria-haspopup
aria-expanded={isMenuOpen}
onClick={() => setIsMenuOpen(true)}
ref={setMenuButtonAnchor}
>
<Icon size={16} data={settings} />
</Styled.ActionRowButton>
</Tooltip>
<Tooltip title='Clear table content'>
<Styled.ActionRowButton
aria-haspopup
Expand Down
1 change: 0 additions & 1 deletion packages/dm-core/src/hooks/useJob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export function useJob(entityId?: string, jobId?: string): IUseJob {
return null
}
setIsLoading(true)
console.log(' --- Peter --- ')
return dmJobApi
.startJob({ jobDmssId: entityId })
.then((response: AxiosResponse<StartJobResponse>) => {
Expand Down

0 comments on commit 4a06358

Please sign in to comment.