Skip to content

Commit

Permalink
Rename the function again, #10186
Browse files Browse the repository at this point in the history
  • Loading branch information
njkim committed Oct 25, 2023
1 parent 9d85ae3 commit 9329e39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ define([
}
});

this.delete = function() {
this.bulkDelete = function() {
self.addAllFormData();
params.activeTab("import");
self.submit('delete').then(data => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ <h3>
<span data-bind="text: $root.translations.deleteResourceCount(numberOfResources())"></span>
</p>
<!-- /ko -->
<button data-bind="click: count, attr: {disabled: !ready()}" class="btn btn-success">
<button data-bind="click: count, disable: !ready()" class="btn btn-success">
<span data-bind="text: $root.translations.confirm"></span>
<i class="fa fa-spin fa-spinner" data-bind="visible: counting()"></i>
</button>
</div>
</div>
<div class="tabbed-workflow-footer, etl-module-footer">
<button style="margin-right: 8px;" data-bind="click: delete, attr: {disabled: !ready() || !showCount()}" class="btn btn-success">
<button style="margin-right: 8px;" data-bind="click: bulkDelete, disable: (!ready() || !showCount())" class="btn btn-success">
<span data-bind="text: $root.translations.start"></span>
</button>
</div>
Expand Down

0 comments on commit 9329e39

Please sign in to comment.