Bug 1588258 - Prevent React key erro in debugger's Breakpoints panel r=jlast

Differential Revision: https://phabricator.services.mozilla.com/D49047

--HG--
extra : moz-landing-system : lando
This commit is contained in:
David Walsh 2019-10-15 02:25:06 +00:00
Родитель c7518beb08
Коммит bd71d094b3
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -121,7 +121,11 @@ class Breakpoints extends Component<Props> {
);
return [
<BreakpointHeading source={source} sources={sources} />,
<BreakpointHeading
key={source.id}
source={source}
sources={sources}
/>,
...sortedBreakpoints.map(breakpoint => (
<Breakpoint
breakpoint={breakpoint}