Little leftover in Neos.NodeTypes:Image

Hi,

there ist still one little leftover with the name “typo3” after migrating to neos 3.0.

“typo3-neos-alignment-” in Neos.NodeTypes\Resources\Private\Fusion\Root.fusion

# Image TS Object
prototype(Neos.NodeTypes:Image) {
	maximumWidth = 2560
	width = null
	maximumHeight = 2560
	height = null
	imageClassName = ${q(node).property('alignment') ? ('typo3-neos-alignment-' + q(node).property('alignment')) : ''}
	allowCropping = false
	allowUpScaling = false
	link.@process.convertUris = Neos.Neos:ConvertUris {
		forceConversion = true
	}
	title = ${q(node).property('title') ? q(node).property('title') : q(node).property('image').title}
	caption = ${String.trim(String.stripTags(q(node).property('caption'))) ? q(node).property('caption') : q(node).property('image').caption}
}

Thanks for reporting, there’s already a pull request for that https://github.com/neos/neos-development-collection/pull/1582