Renames
This commit is contained in:
parent
d1712bda52
commit
70d49bbd6b
|
@ -50,7 +50,7 @@
|
|||
(!search ||
|
||||
helper.label.match(searchRgx) ||
|
||||
helper.description.match(searchRgx)) &&
|
||||
(mode.name !== "javascript" || !helper.requiresBlock)
|
||||
(mode.name !== "javascript" || helper.allowsJs)
|
||||
)
|
||||
})
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ export function handlebarsCompletions() {
|
|||
label: helperName,
|
||||
displayText: helperName,
|
||||
description: helperConfig.description,
|
||||
requiresBlock: helperConfig.requiresBlock,
|
||||
allowsJs: !helperConfig.requiresBlock,
|
||||
}))
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue