1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

remove unneccessary call to stopPropagation()

Signed-off-by: ndrscodes <ndrscodes@gmail.com>
This commit is contained in:
ndrscodes 2022-01-14 18:04:41 +01:00
parent 0d134ed5cb
commit 1f68b4a51b

View File

@ -56,7 +56,6 @@ export class EditableList<T> extends React.Component<Props<T>> {
if (val) {
evt.preventDefault();
this.props.add(val);
evt.stopPropagation();
}
}