TagsTable

TagsTable is a React component that displays all tags created by an entity and allows renaming and deleting these tags.

Demo

:arrow-right: View the demo

Usage

<div style={{display: 'flex', height: 600}}>
  <TagsTable />
</div>

Properties

onChangeSort: function

Callback. Triggered when the sort order for any column is changed. The function has one argument whose value is an object with the following fields:

  • sort - the field name of column whose sort order was changed. For example, "updated_at".
  • order - the new sort order, either "asc" or "desc".