File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/com/magento/idea/magento2plugin/actions/generation/dialog Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
6
6
7
7
## 3.2.2
8
8
9
+ ### Fixed
10
+
11
+ - New entity layout name and edit entity layout name inside it
12
+
9
13
## 3.2.1
10
14
11
15
### Fixed
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