fix(frontend): prevent table horizontal scroll on mobile by default
This commit is contained in:
@@ -88,7 +88,7 @@ export function DataTable<TData>({
|
|||||||
(table.getVisibleLeafColumns().length || 1) + (hasRowActions ? 1 : 0);
|
(table.getVisibleLeafColumns().length || 1) + (hasRowActions ? 1 : 0);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="overflow-x-auto">
|
<div className="overflow-x-hidden sm:overflow-x-auto">
|
||||||
<table className={tableClassName}>
|
<table className={tableClassName}>
|
||||||
<thead
|
<thead
|
||||||
className={
|
className={
|
||||||
|
|||||||
Reference in New Issue
Block a user