Skip to content

Commit

Permalink
Removed console log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhanur Sharma committed Dec 18, 2024
1 parent 0064403 commit a081574
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions sde_indexing_helper/static/js/delta_url_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -2199,7 +2199,6 @@ function handleWorkflowStatusSelect() {

function handleReindexingStatusSelect() {
$("body").on("click", ".reindexing_status_select", function () {
console.log("Reindexing status select clicked");
$("#reindexingStatusChangeModal").modal();
var collectionName = $(".urlStyle").text();
var collection_id = $(this).data("collection-id");
Expand Down Expand Up @@ -2234,9 +2233,7 @@ function handleReindexingStatusSelect() {
$button.removeClass(
"btn-light btn-danger btn-warning btn-info btn-success btn-primary btn-secondary"
);
console.log("After remove class:", $button.attr('class'));
$button.addClass(color_choices[parseInt(reindexing_status)]);
console.log("After add class:", $button.attr('class'));
postReindexingStatus(collection_id, reindexing_status);
$("#reindexingStatusChangeModal").modal("hide");
break;
Expand Down

0 comments on commit a081574

Please sign in to comment.