clean up TODOs

pull/100790/head
Adela Almasan 5 months ago
parent 45e06ec36e
commit d29f423d24
  1. 1
      packages/grafana-ui/src/components/Table/TableNG/Cells/BarGaugeCell.tsx
  2. 1
      packages/grafana-ui/src/components/Table/TableNG/Cells/ImageCell.tsx
  3. 1
      packages/grafana-ui/src/components/Table/TableNG/Cells/JSONCell.tsx

@ -72,7 +72,6 @@ export const BarGaugeCell = ({ value, field, theme, height, width, rowIdx, actio
);
};
// @TODO: Actions
return (
<>
{hasLinks || hasActions ? (

@ -24,7 +24,6 @@ export const ImageCell = ({ cellOptions, field, height, justifyContent, value, r
const img = <img alt={alt} src={text} className={styles.image} title={title} />;
// TODO: Implement actions
return (
<div className={styles.imageContainer}>
{hasLinks || hasActions ? (

@ -28,7 +28,6 @@ export const JSONCell = ({ value, justifyContent, field, rowIdx, actions }: Omit
const hasLinks = Boolean(getCellLinks(field, rowIdx)?.length);
const hasActions = Boolean(actions?.length);
// TODO: Implement actions
return (
<div className={styles.jsonText}>
{hasLinks || hasActions ? (

Loading…
Cancel
Save