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

Switch to App.Preferences

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-09-13 14:55:34 -04:00
parent 68d4502374
commit 9dc89a9a3a
3 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@ const {
Navigation
} = Renderer;
const {
UserPreferences,
App,
} = Common;
@ -47,7 +47,7 @@ export function NodeMenu(props: NodeMenuProps) {
if (!node) return null;
const nodeName = node.getName();
const kubectlPath = JSON.stringify(UserPreferences.getKubectlPath()); // this call escapes spaces and quotes
const kubectlPath = JSON.stringify(App.Preferences.getKubectlPath()); // this call escapes spaces and quotes
const sendToTerminal = (command: string) => {
terminalStore.sendCommand(command, {

View File

@ -39,7 +39,7 @@ const {
} = Renderer;
const {
Util,
UserPreferences,
App,
} = Common;
export interface PodAttachMenuProps extends Renderer.Component.KubeObjectMenuProps<Pod> {
@ -50,7 +50,7 @@ export class PodAttachMenu extends React.Component<PodAttachMenuProps> {
const { object: pod } = this.props;
const commandParts = [
JSON.stringify(UserPreferences.getKubectlPath()), // this call escapes spaces and quotes
JSON.stringify(App.Preferences.getKubectlPath()), // this call escapes spaces and quotes
"attach",
"-i",
"-t",

View File

@ -39,7 +39,7 @@ const {
} = Renderer;
const {
Util,
UserPreferences,
App,
} = Common;
export interface PodShellMenuProps extends Renderer.Component.KubeObjectMenuProps<Pod> {
@ -50,7 +50,7 @@ export class PodShellMenu extends React.Component<PodShellMenuProps> {
const { object: pod } = this.props;
const commandParts = [
JSON.stringify(UserPreferences.getKubectlPath()), // this call escapes spaces and quotes
JSON.stringify(App.Preferences.getKubectlPath()), // this call escapes spaces and quotes
"exec",
"-i",
"-t",