Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
QDS 4.6.0
-
None
-
b3c5c748c (qds/dev)
-
QDS Berlin - 2024 Week 39/40
Description
Since we create a Theme component when generating design system QML for MCU. The properties in the instances of the Theme component should not have property type.
Incorrect:
property Collection2Theme mode1: Collection2Theme { property color acolor: Collection2.colors.xcolor property color xcolor: AppTheme.colors.screen_background number: 0 }
Correct
property Collection2Theme mode1: Collection2Theme { acolor: Collection2.colors.xcolor xcolor: AppTheme.colors.screen_background number: 0 }