diff --git a/tronweb/coffee/actionrun.coffee b/tronweb/coffee/actionrun.coffee
index 7953dc16e..aa3cc8441 100644
--- a/tronweb/coffee/actionrun.coffee
+++ b/tronweb/coffee/actionrun.coffee
@@ -169,12 +169,12 @@ class module.ActionRunView extends Backbone.View
Node |
<%= displayNode(node) %> |
Raw original command |
- <%= original_command %> |
+ <%- original_command %> |
Config command |
- <%= raw_command %> |
+ <%- raw_command %> |
<% if (command) { %>
Last run command |
- <%= command %> |
+ <%- command %> |
<% } %>
Exit codes |
@@ -211,15 +211,15 @@ class module.ActionRunView extends Backbone.View
meta
- <%= meta.join('\\n') %>
+ <%- meta.join('\\n') %>
stdout
- <%= stdout.join('\\n') %>
+ <%- stdout.join('\\n') %>
stderr
- <%= stderr.join('\\n') %>
+ <%- stderr.join('\\n') %>
diff --git a/tronweb/coffee/models.coffee b/tronweb/coffee/models.coffee
index d6fc1f15a..3609e034c 100644
--- a/tronweb/coffee/models.coffee
+++ b/tronweb/coffee/models.coffee
@@ -34,7 +34,7 @@ class window.RefreshModel extends Backbone.Model
@scheduleRefresh()
disableRefresh: =>
- console.log("Disableing refresh ")
+ console.log("Disabling refresh")
@enabled = false
@clear()
|