mirror of
https://github.com/discourse/discourse.git
synced 2025-04-28 01:04:31 +08:00
FIX: GroupedView bug with latest Ember build
This commit is contained in:
parent
e668d770ac
commit
f73aa444ee
@ -9367,6 +9367,7 @@ define("ember-handlebars/helpers/view",
|
|||||||
} else if (isGlobalPath(path)) {
|
} else if (isGlobalPath(path)) {
|
||||||
return null;
|
return null;
|
||||||
} else if (path === 'this' || path === '') {
|
} else if (path === 'this' || path === '') {
|
||||||
|
if (data.insideGroup && data.insideEach) { return 'context'; }
|
||||||
return '_parentView.context';
|
return '_parentView.context';
|
||||||
} else {
|
} else {
|
||||||
return '_parentView.context.' + path;
|
return '_parentView.context.' + path;
|
||||||
|
@ -9074,6 +9074,7 @@ define("ember-handlebars/helpers/view",
|
|||||||
} else if (isGlobalPath(path)) {
|
} else if (isGlobalPath(path)) {
|
||||||
return null;
|
return null;
|
||||||
} else if (path === 'this' || path === '') {
|
} else if (path === 'this' || path === '') {
|
||||||
|
if (data.insideGroup && data.insideEach) { return 'context'; }
|
||||||
return '_parentView.context';
|
return '_parentView.context';
|
||||||
} else {
|
} else {
|
||||||
return '_parentView.context.' + path;
|
return '_parentView.context.' + path;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user