Skip to content

Commit 4b25bf8

Browse files
committed
Merge remote-tracking branch 'origin/2025.4' into 2026.1
2 parents d02629d + de98d49 commit 4b25bf8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ClassificationStore/Repository/Configuration/CollectionRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function update(int $id, string $name, ?string $description): CollectionC
100100
{
101101
$config = $this->getById($id);
102102
$config->setName($name);
103-
$config->setDescription($description);
103+
$config->setDescription($description ?? '');
104104

105105
try {
106106
$config->save();

src/ClassificationStore/Repository/Configuration/StoreRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function update(int $id, string $name, ?string $description): StoreConfig
9494
}
9595

9696
$config->setName($name);
97-
$config->setDescription($description);
97+
$config->setDescription($description ?? '');
9898

9999
try {
100100
$config->save();

0 commit comments

Comments
 (0)