@@ -46,50 +46,9 @@ const columns: ColumnDef<any>[] = [
4646 id : "image" ,
4747 accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . availability ,
4848 header : ( ) => "Image" ,
49- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
5049 meta : { className : "w-1/6" } ,
5150 enableSorting : false ,
5251 } ,
53- {
54- id : "internal_test_suite" ,
55- accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . internal_test_suite ,
56- header : ( ) => "Internal Test Suite" ,
57- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
58- enableSorting : false ,
59- meta : { className : "whitespace-normal" } ,
60- } ,
61- {
62- id : "external_test_suite" ,
63- accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . external_test_suite ,
64- header : ( ) => "External Test Suite" ,
65- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
66- enableSorting : false ,
67- meta : { className : "whitespace-normal" } ,
68- } ,
69- {
70- id : "terraform_test_suite" ,
71- accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . terraform_test_suite ,
72- header : ( ) => "Terraform Validated" ,
73- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
74- enableSorting : false ,
75- meta : { className : "whitespace-normal" } ,
76- } ,
77- {
78- id : "aws_validated" ,
79- accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . aws_validated ,
80- header : ( ) => "AWS Validated" ,
81- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
82- enableSorting : false ,
83- meta : { className : "whitespace-normal" } ,
84- } ,
85- {
86- id : "snapshot_tested" ,
87- accessorFn : row => row [ Object . keys ( row ) [ 0 ] ] . snapshot_tested ,
88- header : ( ) => "Snapshot Tested" ,
89- cell : ( { getValue } ) => ( getValue ( ) ? "✔️" : "" ) ,
90- enableSorting : false ,
91- meta : { className : "whitespace-normal" } ,
92- } ,
9352] ;
9453
9554export default function PersistenceCoverage ( { service} : { service : string } ) {
@@ -123,7 +82,6 @@ export default function PersistenceCoverage({service}: {service: string}) {
12382
12483 return (
12584 < div className = "w-full" >
126- < h2 id = "api-coverage" > API Coverage</ h2 >
12785 < div style = { { marginBottom : 12 , marginTop : 12 } } >
12886 < input
12987 type = "text"
0 commit comments