Skip to content

Commit

Permalink
remove no search term label from data visualizations
Browse files Browse the repository at this point in the history
  • Loading branch information
konolak committed Jul 27, 2023
1 parent 6c795df commit 42dad9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ export class BarComponent implements OnChanges {
.html(
(this.searchTerm
? `"<mark>${this.searchTerm}</mark>"`
: $localize`:@@noSearchTerm:Ei hakusanaa`) +
: ``) +
(this.searchTarget ? ', ' + this.searchTarget : '')
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class PieComponent implements OnInit, OnChanges {
.html(
(this.searchTerm
? `"<mark>${this.searchTerm}</mark>"`
: $localize`:@@noSearchTerm:Ei hakusanaa`) +
: ``) +
(this.searchTarget ? ', ' + this.searchTarget : '')
);

Expand Down

0 comments on commit 42dad9e

Please sign in to comment.