1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Get rid of react key warning when no results

This commit is contained in:
Luke Barnard
2017-05-18 17:01:01 +01:00
parent f99fa3ac1a
commit a425909b76

View File

@@ -254,7 +254,7 @@ export default class Dropdown extends React.Component {
);
});
if (options.length === 0) {
return [<div className="mx_Dropdown_option">
return [<div key="0" className="mx_Dropdown_option">
No results
</div>];
}