Update selection-info-count immediately on selection

The selection-info-count at the left bottom of host or service info needs to be updated immediately after selection.
Hence use the already defined ´count´ to update the selection info on click. Also, avoid refreshing the active columns.
This commit is contained in:
Ravi Kumar Kempapura Srinivasa 2021-10-07 15:39:20 +02:00 committed by Johannes Meyer
parent 908adc66c1
commit 72e63dd0a1
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@
});
// update selection info
$('.selection-info-count').text(table.selections().length);
$('.selection-info-count').text(count);
return false;
};