File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/kotlin/com/emberjs/gts Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
1212
1313
1414group = " com.emberjs"
15- version = " 2023.1.47 "
15+ version = " 2023.1.48 "
1616
1717// Configure project's dependencies
1818repositories {
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ class HbLintAnnotator() : Annotator {
227227 val prevSiblingIsSep = element.parent.prevSibling.elementType == HbTokenTypes .SEP ||
228228 element.prevSibling.elementType == HbTokenTypes .SEP
229229 val isInHbData = element.parent !is HbData
230- if (! prevSiblingIsSep && ! isInHbData) {
230+ if (! prevSiblingIsSep || ! isInHbData) {
231231 candidates?.forEach { c ->
232232 val icwe = JSImportCandidateWithExecutor (c, ES6AddImportExecutor (tsFile))
233233 val fix = GtsImportFix (element, icwe, JSImportModuleFix .HintMode .SINGLE )
You can’t perform that action at this time.
0 commit comments