mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
due to excel limit, title can not exceed 31 characters
This commit is contained in:
parent
a06a2c9592
commit
9798cb8a09
@ -449,7 +449,9 @@ class SpreadSheetFormatter implements FormatterInterface
|
|||||||
|
|
||||||
protected function getTitle()
|
protected function getTitle()
|
||||||
{
|
{
|
||||||
return $this->translator->trans($this->export->getTitle());
|
$title = $this->translator->trans($this->export->getTitle());
|
||||||
|
|
||||||
|
return substr($title, 0, 30) . '…';
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function initializeCache($key)
|
protected function initializeCache($key)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user