Commit c7b556c0 by Torkel Ödegaard Committed by GitHub

Merge pull request #15017 from grafana/explore-fixes

Fixed react key warning for loki start page
parents b5bc6925 6419a303
......@@ -26,7 +26,7 @@ export default (props: any) => (
<div>
<h2>Loki Cheat Sheet</h2>
{CHEAT_SHEET_ITEMS.map(item => (
<div className="cheat-sheet-item" key={item.expression}>
<div className="cheat-sheet-item" key={item.title}>
<div className="cheat-sheet-item__title">{item.title}</div>
{item.expression && (
<div
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment