forked from p15670423/monkey
Fix singlequotes eslint warnings
This commit is contained in:
parent
e0a40626be
commit
508c562243
|
@ -27,7 +27,7 @@ function RunOptions(props) {
|
||||||
.then(res => {
|
.then(res => {
|
||||||
let commandServers = res.configuration.internal.island_server.command_servers;
|
let commandServers = res.configuration.internal.island_server.command_servers;
|
||||||
let ipAddresses = commandServers.map(ip => {
|
let ipAddresses = commandServers.map(ip => {
|
||||||
return ip.split(":", 1);
|
return ip.split(':', 1);
|
||||||
});
|
});
|
||||||
setIps(ipAddresses);
|
setIps(ipAddresses);
|
||||||
setInitialized(true);
|
setInitialized(true);
|
||||||
|
|
|
@ -3,11 +3,11 @@ import CollapsibleWellComponent from '../CollapsibleWell';
|
||||||
import {generateInfoBadges} from './utils';
|
import {generateInfoBadges} from './utils';
|
||||||
|
|
||||||
export function sharedPasswordsIssueOverview() {
|
export function sharedPasswordsIssueOverview() {
|
||||||
return (<li key={"shared_passwords"}>Multiple users have the same password</li>)
|
return (<li key={'shared_passwords'}>Multiple users have the same password</li>)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function sharedAdminsDomainIssueOverview() {
|
export function sharedAdminsDomainIssueOverview() {
|
||||||
return (<li key={"admin_domains"}>Shared local administrator account - Different machines have the same account as a local
|
return (<li key={'admin_domains'}>Shared local administrator account - Different machines have the same account as a local
|
||||||
administrator.</li>)
|
administrator.</li>)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue