client/upload: restore option to pause upload chain on error

This commit is contained in:
Shyam Sunder
2021-11-29 20:06:20 -05:00
parent 9f95e9eb90
commit 780b7dc6fd
4 changed files with 37 additions and 7 deletions

View File

@ -7,7 +7,7 @@
<span class='skip-duplicates'>
<%= ctx.makeCheckbox({
text: 'Skip duplicates',
text: 'Skip duplicate',
name: 'skip-duplicates',
checked: false,
}) %>
@ -15,12 +15,20 @@
<span class='always-upload-similar'>
<%= ctx.makeCheckbox({
text: 'Always upload similar',
text: 'Force upload similar',
name: 'always-upload-similar',
checked: false,
}) %>
</span>
<span class='pause-remain-on-error'>
<%= ctx.makeCheckbox({
text: 'Pause on error',
name: 'pause-remain-on-error',
checked: true,
}) %>
</span>
<input type='button' value='Cancel' class='cancel'/>
</div>