Skip to content
This repository has been archived by the owner on Apr 23, 2022. It is now read-only.

Commit

Permalink
Fixed reference to ‘docker’
Browse files Browse the repository at this point in the history
  • Loading branch information
claygriffiths committed Jun 7, 2017
1 parent 3d609df commit 575a60d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/SiteInfoVolumes.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = function (context) {

var Component = context.React.Component;
var React = context.React;
var docker = context.docker;
var docker = context.docker.docker;
var remote = context.electron.remote;

var dialog = remote.dialog;
Expand Down
2 changes: 1 addition & 1 deletion src/SiteInfoVolumes.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function (context) {

const Component = context.React.Component;
const React = context.React;
const docker = context.docker;
const docker = context.docker.docker;
const {remote} = context.electron;
const dialog = remote.dialog;
const sendEvent = context.events.send;
Expand Down

0 comments on commit 575a60d

Please sign in to comment.