We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d423c commit 6365c6bCopy full SHA for 6365c6b
2 files changed
docs/changelog.md
@@ -22,6 +22,7 @@ category: Administration
22
* feat: ensure compatibility with Jira 11.3.0
23
* docs: improve documentation for assignee in syntax
24
* fix: importer ignores attributes without values
25
+* fix: improve logging for empty attributes in importer
26
27
### [25.10.0] - 2025-10-03
28
src/main/java/de/codescape/jira/plugins/multiplesubtasks/action/SubtaskTemplateImportAction.java
@@ -347,6 +347,8 @@ String transformQuickSubtasksTemplate(String templateString) {
347
default:
348
log.error("Ignoring unknown attribute '" + key + "' with value: '" + value + "'");
349
}
350
+ } else {
351
+ log.error("Ignoring attribute without value '" + key + "'");
352
353
354
} else {
0 commit comments