Skip to content
Snippets Groups Projects
Commit ac3f0533 authored by Oliver Bartsch's avatar Oliver Bartsch
Browse files

[BUGFIX] Fix table column type for imageManipulation

Also adds the type to the corresponding test.

Resolves: #104230
Releases: main, 12.4
Change-Id: Ica9e6b63d5a2fe52cc775642562cf8f9036db081
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84958


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent 596bb678
Branches
Tags
No related merge requests found
......@@ -35,7 +35,7 @@ enum TableColumnType: string
case USER = 'user';
case FLEX = 'flex';
case INLINE = 'inline';
case IMAGEMANIPULATION = 'imagemanipulation';
case IMAGEMANIPULATION = 'imageManipulation';
case SLUG = 'slug';
case CATEGORY = 'category';
case EMAIL = 'email';
......
......@@ -464,6 +464,7 @@ final class ColumnMapFactoryTest extends FunctionalTestCase
['user', TableColumnType::USER],
['flex', TableColumnType::FLEX],
['inline', TableColumnType::INLINE],
['imageManipulation', TableColumnType::IMAGEMANIPULATION],
['slug', TableColumnType::SLUG],
['email', TableColumnType::EMAIL],
['link', TableColumnType::LINK],
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment