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

Removing spread symbols

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-08-27 07:32:24 +03:00
parent 94e301887f
commit e57fc99242

View File

@ -132,7 +132,7 @@ export class DeleteClusterDialog extends React.Component {
const contexts = config.contexts.filter(context => context.name !== cluster.contextName);
const options = [
...contexts.map(context => ({
contexts.map(context => ({
label: context.name,
value: context.name,
})),