We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eff7209 + 4f796a8 commit c40be92Copy full SHA for c40be92
CHANGELOG.md
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
9
### Fixed
10
11
- Reference navigation for classes under directories with underscores
12
+- Fixed the array access exception when using copy path action
13
14
## 3.1.1
15
src/com/magento/idea/magento2plugin/actions/CopyMagentoPath.java
@@ -25,7 +25,8 @@ public class CopyMagentoPath extends CopyPathProvider {
25
private final String[] templatePaths = {
26
"view/frontend/templates/",
27
"view/adminhtml/templates/",
28
- "view/base/templates/"
+ "view/base/templates/",
29
+ "templates/"
30
};
31
32
@Override
0 commit comments