Skip to content

Commit

Permalink
[frontend] fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
labo-flg committed Sep 6, 2024
1 parent 90b6e8b commit 2267530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ const DataTableHeader: FunctionComponent<DataTableHeaderProps> = ({
}
}}
>
<Tooltip title={t_i18n(column.label)}>{t_i18n(column.label).toUpperCase()}</Tooltip>
<Tooltip title={t_i18n(column.label)}>
<span style={{ fontSize: '13px' }}>{t_i18n(column.label).toUpperCase()}</span>
</Tooltip>
{sortBy && (orderAsc ? <ArrowDropUp /> : <ArrowDropDown />)}
</div>
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,34 +123,3 @@ export const stixCyberObservablesLinesFragment = graphql`
}
}
`;

// export default createPaginationContainer(
// StixCyberObservablesLines,
// {
// data: stixCyberObservablesLinesFragment,
// },
// {
// direction: 'forward',
// getConnectionFromProps(props) {
// return props.data && props.data.stixCyberObservables;
// },
// getFragmentVariables(prevVars, totalCount) {
// return {
// ...prevVars,
// count: totalCount,
// };
// },
// getVariables(props, { count, cursor }, fragmentVariables) {
// return {
// types: fragmentVariables.types,
// search: fragmentVariables.search,
// count,
// cursor,
// orderBy: fragmentVariables.orderBy,
// orderMode: fragmentVariables.orderMode,
// filters: fragmentVariables.filters,
// };
// },
// query: stixCyberObservablesLinesQuery,
// },
// );

0 comments on commit 2267530

Please sign in to comment.