Production release December 2023 #27

Merged
k.triantafyllou merged 8 commits from develop into master 2023-12-21 13:46:38 +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) {