Skip to content

Commit

Permalink
replacing component with base checkbox to prevent mouse event issues (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
manderson-dev authored Sep 26, 2024
1 parent 00bada8 commit a8e28ff
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { GrafanaTheme2 } from '@grafana/data';
import { useStyles2, Checkbox } from '@grafana/ui';
import { useStyles2 } from '@grafana/ui';

import { css } from '@emotion/css';

Expand Down Expand Up @@ -38,9 +38,7 @@ export const ProcessListItem: React.FC<ProcessListItemProps> = ({
}}
>
<div className={styles.checkboxWrapper}>
<Checkbox
value={isSelected}
/>
<input type="checkbox" checked={isSelected} />
</div>
<div>{process.process_uuid}</div>
<div className={styles.details}>
Expand Down

0 comments on commit a8e28ff

Please sign in to comment.