Fix partial handling with different context
This commit is contained in:
@@ -136,7 +136,7 @@ export function template(templateSpec, env) {
|
||||
blockParams = templateSpec.useBlockParams ? [] : undefined;
|
||||
if (templateSpec.useDepths) {
|
||||
if (options.depths) {
|
||||
depths = context !== options.depths[0] ? [context].concat(depths) : options.depths;
|
||||
depths = context !== options.depths[0] ? [context].concat(options.depths) : options.depths;
|
||||
} else {
|
||||
depths = [context];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user