Skip to content

Commit 300096a

Browse files
committed
frontend: NamespacesAutocomplete: Add missing key prop
Signed-off-by: Oleksandr Dubenko <[email protected]>
1 parent 4f8bf3e commit 300096a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/common/NamespacesAutocomplete.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function PureNamespacesAutocomplete({
5959
// is useful since the label is ellipsized and this we get to see it change.
6060
value={[...filter.namespaces.values()].reverse()}
6161
renderOption={(props, option, { selected }) => (
62-
<li {...props}>
62+
<li {...props} key={props.key}>
6363
<Checkbox
6464
icon={<Icon icon="mdi:checkbox-blank-outline" />}
6565
checkedIcon={<Icon icon="mdi:check-box-outline" />}

0 commit comments

Comments
 (0)