Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomThomson committed Aug 15, 2024
1 parent e3d1d0e commit 75a4e51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/grid_example/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Grid Example

This temporary example plugin will be used to build out the new layout engine for Dashboards.
This plugin is a playground and learning tool that demonstrates the Dashboard layout engine.
2 changes: 1 addition & 1 deletion examples/grid_example/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class GridExamplePlugin
developerExamples.register({
appId: GRID_EXAMPLE_APP_ID,
title: gridExampleTitle,
description: `This temporary example plugin will be used to build out the new layout engine for Dashboards.`,
description: `A playground and learning tool that demonstrates the Dashboard layout engine.`,
});
}

Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-grid-layout/grid/grid_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const GridLayout = ({
{gridLayout.map((rowData, rowIndex) => {
return (
<GridRow
key={rowIndex}
rowData={rowData}
key={rowData.title}
rowIndex={rowIndex}
runtimeSettings={runtimeSettings}
activePanelId={interactionEvent?.id}
Expand Down

0 comments on commit 75a4e51

Please sign in to comment.