Tweak sidebar styles and list structure to fix long table names on a single line

This commit is contained in:
Dan Sosedoff
2014-10-31 21:39:00 -05:00
parent 61ecc9e9a1
commit d075e9b1f9
3 changed files with 50 additions and 23 deletions

View File

@@ -31,7 +31,7 @@ function explainQuery(query, cb) {
function loadTables() {
getTables(function(data) {
data.forEach(function(item) {
$("<li>" + item + "</li>").appendTo("#tables");
$("<li><span>" + item + "</span></li>").appendTo("#tables");
});
});
}