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).
8
8
9
9
### Fixed
10
10
11
+ - New entity layout name and edit entity layout name inside it
11
12
- ` Java.lang.IllegalArgumentException ` During adding a new method into an existing plugin
12
13
13
14
## 3.2.1
Original file line number Diff line number Diff line change 50
50
import com .magento .idea .magento2plugin .ui .FilteredComboBox ;
51
51
import com .magento .idea .magento2plugin .ui .table .TableGroupWrapper ;
52
52
import com .magento .idea .magento2plugin .util .CamelCaseToSnakeCase ;
53
- import com .magento .idea .magento2plugin .util .FirstLetterToLowercaseUtil ;
54
53
import com .magento .idea .magento2plugin .util .magento .GetAclResourcesListUtil ;
55
54
import com .magento .idea .magento2plugin .util .magento .GetModuleNameByDirectoryUtil ;
56
55
import java .awt .Cursor ;
@@ -445,7 +444,7 @@ private EntityCreatorContextData getEntityCreatorContextData(
445
444
final String dtoInterfaceClassName = entityName .concat (DTO_INTERFACE_SUFFIX );
446
445
447
446
final String actionsPathPrefix = dialogData .getRoute () + File .separator
448
- + FirstLetterToLowercaseUtil . convert ( entityName ) + File .separator ;
447
+ + entityName . toLowerCase ( Locale . getDefault () ) + File .separator ;
449
448
final NamespaceBuilder dtoModelNamespace =
450
449
new DataModelFile (moduleName , dtoClassName ).getNamespaceBuilder ();
451
450
final NamespaceBuilder dtoInterfaceNamespace =
You can’t perform that action at this time.
0 commit comments