Show full paths of elements on hover in part tables

Related to discussion #312
This commit is contained in:
Jan Böhmer 2023-07-08 19:02:43 +02:00
parent d38ac652fc
commit b941b97eee
2 changed files with 5 additions and 2 deletions

View file

@ -144,8 +144,9 @@ final class PartsDataTable implements DataTableTypeInterface
continue;
}
$tmp[] = sprintf(
'<a href="%s">%s</a>',
'<a href="%s" title="%s">%s</a>',
$this->urlGenerator->listPartsURL($lot->getStorageLocation()),
htmlspecialchars($lot->getStorageLocation()->getFullPath()),
htmlspecialchars($lot->getStorageLocation()->getName())
);
}