This commit is contained in:
Leon
2022-01-26 10:58:34 +02:00
parent 6c88b0ef46
commit 2f34ce5a04
11 changed files with 139 additions and 56 deletions

View File

@@ -1,5 +1,6 @@
import { useMemo, useState } from "react";
import Checkbox from "./Checkbox"
import '../style/SelectList.sass';
export interface Props {
valuesListInput;
@@ -64,7 +65,7 @@ const SelectList: React.FC<Props> = ({valuesListInput,tableName,multiSelect=true
return Object.keys(valuesList).filter((listValue) => listValue.includes(searchValue));
},[valuesList, searchValue])
return <div className={tabelClassName}>
return <div className={tabelClassName + " namespacesTable"}>
<table cellPadding={5} style={{borderCollapse: "collapse"}}>
<thead>
{tableHead}