@electerm/electerm-react 2.3.190 → 2.3.191

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -311,18 +311,18 @@ export const telnetAuthFields = [
311
311
  // Common tab configurations - functions to ensure translation happens at render time
312
312
  export const quickCommandsTab = () => ({
313
313
  key: 'quickCommands',
314
- label: () => e('quickCommands'),
314
+ label: e('quickCommands'),
315
315
  fields: [commonFields.quickCommands]
316
316
  })
317
317
 
318
318
  export const sshTunnelTab = () => ({
319
319
  key: 'tunnel',
320
- label: () => e('sshTunnel'),
320
+ label: e('sshTunnel'),
321
321
  fields: [commonFields.sshTunnels]
322
322
  })
323
323
 
324
324
  export const connectionHoppingTab = () => ({
325
325
  key: 'connectionHopping',
326
- label: () => e('connectionHopping'),
326
+ label: e('connectionHopping'),
327
327
  fields: [commonFields.connectionHopping]
328
328
  })
@@ -22,7 +22,7 @@ const ftpConfig = {
22
22
  tabs: () => [
23
23
  {
24
24
  key: 'auth',
25
- label: () => e('auth'),
25
+ label: e('auth'),
26
26
  fields: [
27
27
  commonFields.category,
28
28
  commonFields.colorTitle,
@@ -26,7 +26,7 @@ const localConfig = {
26
26
  tabs: () => [
27
27
  {
28
28
  key: 'auth',
29
- label: () => e('auth'),
29
+ label: e('auth'),
30
30
  fields: [
31
31
  commonFields.category,
32
32
  commonFields.colorTitle,
@@ -37,7 +37,7 @@ const localConfig = {
37
37
  },
38
38
  {
39
39
  key: 'settings',
40
- label: () => e('settings'),
40
+ label: e('settings'),
41
41
  fields: [
42
42
  {
43
43
  type: 'input',
@@ -91,7 +91,7 @@ const localConfig = {
91
91
  },
92
92
  {
93
93
  key: 'quickCommands',
94
- label: () => e('quickCommands'),
94
+ label: e('quickCommands'),
95
95
  fields: [
96
96
  { type: 'quickCommands', name: '__quick__', label: '' }
97
97
  ]
@@ -19,7 +19,7 @@ const rdpConfig = {
19
19
  tabs: () => [
20
20
  {
21
21
  key: 'auth',
22
- label: () => e('auth'),
22
+ label: e('auth'),
23
23
  fields: [
24
24
  { type: 'rdpWarning', name: 'rdpWarning' },
25
25
  commonFields.category,
@@ -31,7 +31,7 @@ const serialConfig = {
31
31
  tabs: () => [
32
32
  {
33
33
  key: 'auth',
34
- label: () => e('auth'),
34
+ label: e('auth'),
35
35
  fields: [
36
36
  commonFields.category,
37
37
  commonFields.colorTitle,
@@ -64,14 +64,14 @@ const serialConfig = {
64
64
  },
65
65
  {
66
66
  key: 'settings',
67
- label: () => e('settings'),
67
+ label: e('settings'),
68
68
  fields: [
69
69
  { type: 'terminalBackground', name: 'terminalBackground', label: () => e('terminalBackgroundImage') }
70
70
  ]
71
71
  },
72
72
  {
73
73
  key: 'quickCommands',
74
- label: () => e('quickCommands'),
74
+ label: e('quickCommands'),
75
75
  fields: [
76
76
  { type: 'quickCommands', name: '__quick__', label: '' }
77
77
  ]
@@ -33,12 +33,12 @@ const sshConfig = {
33
33
  tabs: () => [
34
34
  {
35
35
  key: 'auth',
36
- label: () => e('auth'),
36
+ label: e('auth'),
37
37
  fields: sshAuthFields
38
38
  },
39
39
  {
40
40
  key: 'settings',
41
- label: () => e('settings'),
41
+ label: e('settings'),
42
42
  fields: sshSettings
43
43
  },
44
44
  quickCommandsTab(),
@@ -31,12 +31,12 @@ const telnetConfig = {
31
31
  tabs: () => [
32
32
  {
33
33
  key: 'auth',
34
- label: () => e('auth'),
34
+ label: e('auth'),
35
35
  fields: telnetAuthFields
36
36
  },
37
37
  {
38
38
  key: 'settings',
39
- label: () => e('settings'),
39
+ label: e('settings'),
40
40
  fields: terminalSettings
41
41
  },
42
42
  quickCommandsTab()
@@ -23,7 +23,7 @@ const vncConfig = {
23
23
  tabs: () => [
24
24
  {
25
25
  key: 'auth',
26
- label: () => e('auth'),
26
+ label: e('auth'),
27
27
  fields: [
28
28
  { type: 'vncWarning', name: 'vncWarning' },
29
29
  commonFields.category,
@@ -15,7 +15,7 @@ const webConfig = {
15
15
  tabs: () => [
16
16
  {
17
17
  key: 'main',
18
- label: () => e('auth'),
18
+ label: e('auth'),
19
19
  fields: [
20
20
  commonFields.category,
21
21
  commonFields.colorTitle,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@electerm/electerm-react",
3
- "version": "2.3.190",
3
+ "version": "2.3.191",
4
4
  "description": "react components src for electerm",
5
5
  "main": "./client/components/main/main.jsx",
6
6
  "license": "MIT",