Skip to content

Commit

Permalink
fix Option
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelemarre committed Jul 10, 2024
1 parent e572c24 commit e3b056f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webapp/components/table/BasicTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Table, TableBody, TableCell, TableHead, TableRow } from "@material-ui/c
import styled from "styled-components";
import { Maybe } from "../../../utils/ts-utils";
import i18n from "../../../utils/i18n";
import { SelectorOption } from "../selector/utils/selectorHelper";
import { Option } from "../utils/option";
import { Cell } from "./Cell";

const noop = () => {};
Expand All @@ -22,7 +22,7 @@ interface LinkColumn extends BaseColumn {
}
interface SelectorColumn extends BaseColumn {
type: "selector";
options: SelectorOption[];
options: Option[];
}

export type TableColumn = TextColumn | LinkColumn | SelectorColumn;
Expand Down

0 comments on commit e3b056f

Please sign in to comment.