Skip to content

Commit

Permalink
Release 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
hisorange committed Nov 29, 2021
1 parent 132d8b8 commit b1b81a6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### Version 0.0.16

- Cloud Extension store working!

### Version 0.0.14

- Lamdas for CRUD read / list action
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artgen/core",
"version": "0.0.15",
"version": "0.0.16",
"description": "Versatily headless CMS",
"main": "build/main.js",
"homepage": "https://artgen.io",
Expand Down
10 changes: 7 additions & 3 deletions src/modules/content/component/read.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,13 @@ export default function CrudReadComponent() {
// Load content
const [{ data: content, loading: isContentLoading }, refetch] = useHttpClient<
object[]
>(routeCrudAPI(route), {
useCache: false,
});
>(
routeCrudAPI(route) +
new QueryBuilder().top(10_000).toQuery(),
{
useCache: false,
},
);

// Local state
const [columns, setColumns] = useState<TableColumnsType>([]);
Expand Down

0 comments on commit b1b81a6

Please sign in to comment.