File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/com/magento/idea/magento2plugin/actions/generation/dialog Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
88
99### Fixed
1010
11+ - New entity layout name and edit entity layout name inside it
1112- ` Java.lang.IllegalArgumentException ` During adding a new method into an existing plugin
1213
1314## 3.2.1
Original file line number Diff line number Diff line change 5050import com .magento .idea .magento2plugin .ui .FilteredComboBox ;
5151import com .magento .idea .magento2plugin .ui .table .TableGroupWrapper ;
5252import com .magento .idea .magento2plugin .util .CamelCaseToSnakeCase ;
53- import com .magento .idea .magento2plugin .util .FirstLetterToLowercaseUtil ;
5453import com .magento .idea .magento2plugin .util .magento .GetAclResourcesListUtil ;
5554import com .magento .idea .magento2plugin .util .magento .GetModuleNameByDirectoryUtil ;
5655import java .awt .Cursor ;
@@ -445,7 +444,7 @@ private EntityCreatorContextData getEntityCreatorContextData(
445444 final String dtoInterfaceClassName = entityName .concat (DTO_INTERFACE_SUFFIX );
446445
447446 final String actionsPathPrefix = dialogData .getRoute () + File .separator
448- + FirstLetterToLowercaseUtil . convert ( entityName ) + File .separator ;
447+ + entityName . toLowerCase ( Locale . getDefault () ) + File .separator ;
449448 final NamespaceBuilder dtoModelNamespace =
450449 new DataModelFile (moduleName , dtoClassName ).getNamespaceBuilder ();
451450 final NamespaceBuilder dtoInterfaceNamespace =
You can’t perform that action at this time.
0 commit comments