views/logs/_hash.erb in wackamole-0.0.1 vs views/logs/_hash.erb in wackamole-0.0.2

- old
+ new

@@ -2,13 +2,13 @@ <thead> <th width="10%">Parameter</th> <th width="80%">Value</th> </thead> <tbody> - <% hash.each_pair do |k,v| %> + <% hash.keys.sort.each do |k| %> <tr> <td class="label"><%=k%></td> - <td><%=v%></td> + <td><%=hash[k]%></td> </tr> <% end %> </tbody> </table> \ No newline at end of file