Skip to content

Commit fb77fe8

Browse files
committed
Merge tag '1.2.1' into develop
no message
2 parents 22842af + 77343a0 commit fb77fe8

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.woodpecker/prod.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ steps:
2626
- itkdev-docker-compose-server run --rm phpfpm bin/console doctrine:migrations:migrate --no-interaction
2727
- itkdev-docker-compose-server run --rm phpfpm bin/console messenger:setup-transports
2828
- itkdev-docker-compose-server run --rm phpfpm bin/console cache:clear
29+
- itkdev-docker-compose-server run --rm phpfpm bin/console assets:install

.woodpecker/stg.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ steps:
3232
- itkdev-docker-compose-server exec phpfpm bin/console doctrine:migrations:migrate --no-interaction
3333
- itkdev-docker-compose-server exec phpfpm bin/console messenger:setup-transports
3434
- itkdev-docker-compose-server exec phpfpm bin/console cache:clear
35+
- itkdev-docker-compose-server run --rm phpfpm bin/console assets:install

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ See [keep a changelog] for information about writing changes to this log.
88

99
## [Unreleased]
1010

11-
## [1.2.0] - 2025-09-02
11+
## [1.2.1] - 2025-10-07
1212

13-
- [PR-71](https://github.com/itk-dev/event-database-imports/pull/70)
13+
- [PR-72](https://github.com/itk-dev/event-database-imports/pull/72) Fix missing asset for file upload
14+
15+
## [1.2.0] - 2025-10-06
16+
17+
- [PR-71](https://github.com/itk-dev/event-database-imports/pull/71)
1418
- Run schedule feed imports as separate async jobs to avoid failures in one feed blocking others
1519
- Update github actions to latest versions
1620
- [PR-70](https://github.com/itk-dev/event-database-imports/pull/70)

src/Controller/Admin/EventCrudController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ protected function getFieldAssets(FieldCollection $fieldDtos): AssetsDto
208208
$currentPageName = $this->getContext()?->getCrud()?->getCurrentPage();
209209
if (Crud::PAGE_EDIT === $currentPageName || Crud::PAGE_NEW === $currentPageName) {
210210
$imageAssetDto = $this->createAssetDto('field-image.js');
211-
$uploadAssetDto = $this->createAssetDto('field-upload.js');
211+
$uploadAssetDto = $this->createAssetDto('field-file-upload.js');
212212

213213
$fieldAssetsDto->addJsAsset($imageAssetDto);
214214
$fieldAssetsDto->addJsAsset($uploadAssetDto);

0 commit comments

Comments
 (0)