fix(ui) - audit list page set
This commit is contained in:
parent
78767db2d0
commit
2bb3e3c4c9
1 changed files with 4 additions and 1 deletions
|
|
@ -49,7 +49,10 @@ function AuditView(props) {
|
|||
onChange={({ value }) => auditStore.updateKey('order', value.value)}
|
||||
/>
|
||||
</div>
|
||||
<AuditSearchField onChange={(value) => auditStore.updateKey('searchQuery', value) }/>
|
||||
<AuditSearchField onChange={(value) => {
|
||||
auditStore.updateKey('searchQuery', value);
|
||||
auditStore.updateKey('page', 1)
|
||||
} }/>
|
||||
<div>
|
||||
<Button variant="text-primary" className="ml-3" onClick={exportToCsv}>
|
||||
<Icon name="grid-3x3" color="teal" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue