File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
app/renderer/js/pages/preference Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
- const { dialog} = require ( 'electron' ) . remote ;
3
- const { ipcRenderer} = require ( 'electron' ) ;
2
+ const { dialog } = require ( 'electron' ) . remote ;
3
+ const { ipcRenderer } = require ( 'electron' ) ;
4
4
5
5
const BaseComponent = require ( __dirname + '/../../components/base.js' ) ;
6
6
const DomainUtil = require ( __dirname + '/../../utils/domain-util.js' ) ;
@@ -55,7 +55,7 @@ class ServerInfoForm extends BaseComponent {
55
55
type : 'warning' ,
56
56
buttons : [ 'YES' , 'NO' ] ,
57
57
defaultId : 0 ,
58
- message : 'Are you sure you want to delete this server ?'
58
+ message : 'Are you sure you want to disconnect this organization ?'
59
59
} , response => {
60
60
if ( response === 0 ) {
61
61
DomainUtil . removeDomain ( this . props . index ) ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class ServersSection extends BaseSection {
40
40
41
41
this . $serverInfoContainer . innerHTML = servers . length ? '' : '' ;
42
42
// Show Existing servers if servers are there otherwise hide it
43
- this . $existingServers . innerHTML = servers . length === 0 ? '' : 'Existing organizations' ;
43
+ this . $existingServers . innerHTML = servers . length === 0 ? '' : 'Connected organizations' ;
44
44
this . initNewServerForm ( ) ;
45
45
46
46
this . $createOrganizationContainer = document . getElementById ( 'create-organization-container' ) ;
You can’t perform that action at this time.
0 commit comments