Skip to content

Commit 7ff52d6

Browse files
committed
bump
1 parent 91d0d81 commit 7ff52d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313

1414
group = "com.emberjs"
15-
version = "2023.1.47"
15+
version = "2023.1.48"
1616

1717
// Configure project's dependencies
1818
repositories {

src/main/kotlin/com/emberjs/gts/HbLinter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)