Skip to content

Commit

Permalink
debug #301
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed May 17, 2022
1 parent a927179 commit d25fe18
Showing 1 changed file with 17 additions and 27 deletions.
44 changes: 17 additions & 27 deletions plantit/front_end/src/components/navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -816,29 +816,31 @@
<span v-if="profile.migration.num_folders !== null"
>You have
{{ profile.migration.num_folders }} dataset(s) to
migrate.</span
migrate,
{{
profile.migration.num_folders === null
? '?'
: profile.migration.num_folders -
uploadedFolders.length + 1
}}
remaining.</span
>
<b-progress
v-if="profile.migration.num_folders !== null"
:value="uploadedFolders.length"
:max="profile.migration.num_folders"
animated
variant="success"
></b-progress>
<br />
<b>Started:</b>
{{ prettify(profile.migration.started) }}
<br />
<b>Collection:</b>
{{ profile.migration.target_path }}
<br />
<b>Downloading:</b>
{{ downloadedFolders.length }}/{{
profile.migration.num_folders === null
? '?'
: profile.migration.num_folders
}}
<b>Downloaded:</b>
<br />
<b-progress
v-if="profile.migration.num_folders !== null"
:value="downloadedFolders.length"
:max="profile.migration.num_folders"
animated
variant="success"
></b-progress>
<b-list-group
style="
max-height: 10rem;
Expand All @@ -858,20 +860,8 @@
{{ folder.files.length }} file(s)
</b-list-group-item>
</b-list-group>
<b>Uploading:</b>
{{ uploadedFolders.length }}/{{
profile.migration.num_folders === null
? '?'
: profile.migration.num_folders
}}
<b>Uploaded:</b>
<br />
<b-progress
v-if="profile.migration.num_folders !== null"
:value="uploadedFolders.length"
:max="profile.migration.num_folders"
animated
variant="success"
></b-progress>
<b-list-group
style="
max-height: 10rem;
Expand Down

0 comments on commit d25fe18

Please sign in to comment.