From 748207797551fed3da91330c490598ac19bda32b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Oddsson?= Date: Sun, 5 Apr 2015 21:14:34 +0000 Subject: [PATCH] Change variable from snake_case to camelCase. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kristján Oddsson --- src/ContainerList.react.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ContainerList.react.js b/src/ContainerList.react.js index 9b1dcf9cb4..d2954dc603 100644 --- a/src/ContainerList.react.js +++ b/src/ContainerList.react.js @@ -9,14 +9,14 @@ var ContainerList = React.createClass({ render: function () { var self = this; var containers = this.props.containers.map(function (container) { - var container_id = container.Id; - if (!container_id && container.State.Downloading) { + var containerId = container.Id; + if (!containerId && container.State.Downloading) { // Fall back to the container image name when there is no id. (when the // image is downloading). - container_id = container.Image; + containerId = container.Image; } return ( - + ); }); var newItem;