Merge pull request #7158 from shvmbisht/fix/add-search/pagination-to-NR

adding search and pagination to new Relic component
This commit is contained in:
Ben Lambert
2021-09-13 16:55:35 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-newrelic': patch
---
Added pagination and searching to the table
@@ -54,7 +54,7 @@ export const NewRelicAPMTable = ({ applications }: NewRelicApplications) => {
return (
<Table
title="Application Performance Monitoring"
options={{ search: false, paging: false }}
options={{ search: true, paging: true }}
columns={columns}
data={data}
/>