UX: CSS tweaks for badge query previews

This commit is contained in:
riking
2014-09-02 13:29:28 -07:00
parent 3cf493eb4f
commit 71b7c80257
3 changed files with 10 additions and 9 deletions

View File

@@ -19,7 +19,7 @@ export default Ember.Controller.extend({
query_plan_html: function() {
var raw = this.get('model.query_plan'),
returned = "<pre>";
returned = "<pre class='badge-query-plan'>";
_.each(raw, function(linehash) {
returned += Handlebars.Utils.escapeExpression(linehash["QUERY PLAN"]);