Merge pull request #15017 from grafana/explore-fixes

Fixed react key warning for loki start page
pull/14778/head^2
Torkel Ödegaard 7 years ago committed by GitHub
commit c7b556c0e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/plugins/datasource/loki/components/LokiCheatSheet.tsx

@ -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

Loading…
Cancel
Save