Skip to content

Commit

Permalink
feat: Update Datatable to opendex/paragon
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChV committed Feb 16, 2024
1 parent 44242fa commit 8d8763a
Show file tree
Hide file tree
Showing 2 changed files with 278 additions and 1 deletion.
276 changes: 276 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/taxonomy/tag-list/TagListTable.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-check
import React, { useState } from 'react';
import { FormattedMessage, useIntl } from '@edx/frontend-platform/i18n';
import { DataTable } from '@edx/paragon';
import { DataTable } from '@openedx/paragon';
import { isEqual } from 'lodash';
import Proptypes from 'prop-types';

Expand Down Expand Up @@ -66,6 +66,7 @@ const TagListTable = ({ taxonomyId }) => {
const intl = useIntl();
const [options, setOptions] = useState({
pageIndex: 0,
pageSize: 100,
});
const { isLoading } = useTagListDataStatus(taxonomyId, options);
const tagList = useTagListDataResponse(taxonomyId, options);
Expand Down

0 comments on commit 8d8763a

Please sign in to comment.