We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f085dd commit 4be228aCopy full SHA for 4be228a
debug-db/src/main/assets/app.js
@@ -72,7 +72,7 @@ function getDBList() {
72
var isEncrypted = dbList[count][1];
73
var isDownloadable = dbList[count][2];
74
var dbAttribute = isEncrypted == "true" ? ' <span class="glyphicon glyphicon-lock" aria-hidden="true" style="color:blue"></span>' : "";
75
- if(dbName.indexOf("journal") == -1){
+ if(dbName.indexOf("journal") == -1 && dbName.indexOf("-wal") == -1 && dbName.indexOf("-shm") == -1){
76
$("#db-list").append("<a href='#' id=" + dbName + " class='list-group-item' onClick='openDatabaseAndGetTableList(\""+ dbName + "\", \""+ isDownloadable + "\");'>" + dbName + dbAttribute + "</a>");
77
if(!isSelectionDone){
78
isSelectionDone = true;
0 commit comments