Remove languages table on main metrics page

This commit is contained in:
Chris Walsh 2021-12-17 18:25:07 -08:00
parent 9a326a33a0
commit 7725553097
No known key found for this signature in database
GPG Key ID: 28EE0CCA6032019E
2 changed files with 2 additions and 7 deletions

View File

@ -23,7 +23,6 @@ export default function MetricsTable({
filterOptions, filterOptions,
limit, limit,
onDataLoad, onDataLoad,
maxHeight = null,
...props ...props
}) { }) {
const shareToken = useShareToken(); const shareToken = useShareToken();
@ -63,10 +62,7 @@ export default function MetricsTable({
}, [data, error, dataFilter, filterOptions]); }, [data, error, dataFilter, filterOptions]);
return ( return (
<div <div className={classNames(styles.container, className)}>
className={classNames(styles.container, className)}
style={maxHeight ? { minHeight: 0, maxHeight } : {}}
>
{!data && loading && <Loading />} {!data && loading && <Loading />}
{error && <ErrorMessage />} {error && <ErrorMessage />}
{data && !error && <DataTable {...props} data={filteredData} className={className} />} {data && !error && <DataTable {...props} data={filteredData} className={className} />}

View File

@ -153,8 +153,7 @@ export default function WebsiteDetails({ websiteId }) {
<WorldMap data={countryData} /> <WorldMap data={countryData} />
</GridColumn> </GridColumn>
<GridColumn xs={12} md={12} lg={4}> <GridColumn xs={12} md={12} lg={4}>
<CountriesTable maxHeight={265} {...tableProps} onDataLoad={setCountryData} /> <CountriesTable {...tableProps} onDataLoad={setCountryData} />
<LanguagesTable maxHeight={265} {...tableProps} />
</GridColumn> </GridColumn>
</GridRow> </GridRow>
<GridRow className={classNames({ [styles.hidden]: !eventsData?.length > 0 })}> <GridRow className={classNames({ [styles.hidden]: !eventsData?.length > 0 })}>