fix: dont show tooltip if already limited (#25361)
This commit is contained in:
parent
59f421cd04
commit
e456f2bd0d
1 changed files with 1 additions and 1 deletions
|
|
@ -623,7 +623,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList {
|
|||
let $count = this.get_count_element();
|
||||
this.get_count_str().then((count) => {
|
||||
$count.html(`<span>${count}</span>`);
|
||||
if (this.count_upper_bound) {
|
||||
if (this.count_upper_bound && this.count_upper_bound == this.total_count) {
|
||||
$count.attr(
|
||||
"title",
|
||||
__(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue