Merge develop-filters into develop branch #25

Merged
konstantina.galouni merged 7 commits from develop-filters into develop 2023-12-15 09:08:00 +01:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 01eabb74f3 - Show all commits

View File

@ -95,7 +95,8 @@ export class SearchFilterComponent implements OnInit, OnChanges {
}
public _formatTitle(title, length) {
return (((title + " (" + length + ")").length > this._maxCharacters) ? (title.substring(0, (this._maxCharacters - (" (" + length + ")").length - ('...').length)) + "...") : title) + " (" + (length > 95 ? "100" : length) + ")";
// return (((title + " (" + length + ")").length > this._maxCharacters) ? (title.substring(0, (this._maxCharacters - (" (" + length + ")").length - ('...').length)) + "...") : title) + " (" + (length > 95 ? "100" : length) + ")";
return (((title).length > this._maxCharacters) ? (title.substring(0, (this._maxCharacters - ('...').length)) + "...") : title);
}
public _formatName(value) {