mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
DS Picker: Fix React key issue for built-in data source list (#70018)
This commit is contained in:
parent
693e4ceb69
commit
bc48622919
@ -27,7 +27,7 @@ export function BuiltInDataSourceList({ className, current, onChange }: BuiltInD
|
||||
{grafanaDataSources.map((ds) => {
|
||||
return (
|
||||
<DataSourceCard
|
||||
key={ds.id}
|
||||
key={ds.uid}
|
||||
ds={ds}
|
||||
description={CUSTOM_DESCRIPTIONS_BY_UID[ds.uid]}
|
||||
selected={current === ds.id}
|
||||
|
Loading…
Reference in New Issue
Block a user