Browse Source

.factoryReset() split

pull/284/head
Tilen Komel 2 years ago
parent
commit
b1baf2d8e6
  1. 11
      src/components/CommandPalette.tsx

11
src/components/CommandPalette.tsx

@ -200,10 +200,17 @@ export const CommandPalette = (): JSX.Element => {
},
},
{
label: "Factory Reset",
label: "Factory Reset Device",
icon: FactoryIcon,
action() {
connection?.factoryReset();
connection?.factoryResetDevice();
},
},
{
label: "Factory Reset Config",
icon: FactoryIcon,
action() {
connection?.factoryResetConfig();
},
},
],

Loading…
Cancel
Save