TagsTable
TagsTable
is a React component that displays all tags created by an entity and allows renaming and deleting these tags.
Demo
Usage
<div style={{display: 'flex', height: 600}}>
<TagsTable />
</div>
Properties
onChangeSort
: function
onChangeSort
: functionCallback. 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".
Updated 5 days ago