Commit f6576152 authored by Alp Deniz Ogut's avatar Alp Deniz Ogut
Browse files

Include 'done' status to allow display update

parent 254e893f
No related merge requests found
Pipeline #14840 passed with stage
in 7 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -112,7 +112,7 @@ var app = new Vue({
methods: {
is_importing: function () {
for (var name in this.importers) {
if(['started', 'running'].indexOf(this.importers[name].status) == 0)
if(['started', 'running', 'done'].indexOf(this.importers[name].status) == 0)
return true;
}
return false;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment