Skip to content

Commit 1848cd1

Browse files
authored
Merge branch 'master' into use-make
2 parents ba2fd7b + 6637a82 commit 1848cd1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+779
-739
lines changed

.github/workflows/build-and-preview-site.yml

-34
This file was deleted.

.github/workflows/multi-platform.yml

-120
This file was deleted.

CONTRIBUTING.md

+2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ To build a Docker image of the project, please ensure you have `Docker` installe
117117
make docker
118118
```
119119

120+
You can also refer to this "<a href="https://www.youtube.com/live/lsw9KA__iu4?si=o8gpZdSHcqO2OKxE">Training: contributing to Sistent</a>" and this <a href="https://www.youtube.com/live/yiXkxbibLUU?si=Dybj5qr0VLhLWEpl">Websites call</a> where experienced contributors have taught how to use sistent in your project or Meshery
121+
120122
### UI Lint Rules
121123

122124
Layer5 uses ES-Lint to maintain code quality & consistency in our UI Code.

examples/next-12/components/ResponsiveDataTable/ResponsiveDataTable.jsx

+2-9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function ResponsiveDataTable({ data, columns, options = {}, ...props }) {
1313
year: 'numeric'
1414
};
1515

16-
return new Intl.DateTimeFormat('en-US', dateOptions).format(date);
16+
return new Intl.DateTimeFormat('un-US', dateOptions).format(date);
1717
};
1818

1919
const updatedOptions = {
@@ -37,21 +37,14 @@ export function ResponsiveDataTable({ data, columns, options = {}, ...props }) {
3737
break;
3838
}
3939
}
40-
},
41-
filter: true,
42-
sort: true,
43-
responsive: 'standard',
44-
serverSide: false,
40+
}
4541
};
4642

4743
useEffect(() => {
4844
columns?.forEach((col) => {
4945
if (!col.options) {
5046
col.options = {};
5147
}
52-
53-
col.options.sort = true;
54-
col.options.filter = true;
5548
col.options.display = columnVisibility[col.name];
5649

5750
if (

0 commit comments

Comments
 (0)