Commit ee725769 authored by Boris Kocherov's avatar Boris Kocherov

trivial fix

parent 13abbb34
...@@ -362,7 +362,7 @@ ...@@ -362,7 +362,7 @@
used_diemensions, used_diemensions,
path; path;
function rereneder(sub_scope, rerender_path) { function rerender(sub_scope, rerender_path) {
var queue; var queue;
if (!used_diemensions) { if (!used_diemensions) {
queue = get_used_dimensions(g) queue = get_used_dimensions(g)
...@@ -406,7 +406,7 @@ ...@@ -406,7 +406,7 @@
if (g.props.xmla_connections.hasOwnProperty(i)) { if (g.props.xmla_connections.hasOwnProperty(i)) {
s = g.props.xmla_connections[i]; s = g.props.xmla_connections[i];
if (s) { if (s) {
tasks.push(rereneder(s, i)); tasks.push(rerender(s, i));
} }
} }
} }
...@@ -424,7 +424,7 @@ ...@@ -424,7 +424,7 @@
if (g.props.xmla_connections.hasOwnProperty(path)) { if (g.props.xmla_connections.hasOwnProperty(path)) {
if (p === path && action === "add") { if (p === path && action === "add") {
g.props.xmla_connections[path] = scope; g.props.xmla_connections[path] = scope;
return rereneder(scope, path); return rerender(scope, path);
} }
s = g.props.xmla_connections[path]; s = g.props.xmla_connections[path];
if (scope === s) { if (scope === s) {
...@@ -435,7 +435,7 @@ ...@@ -435,7 +435,7 @@
if (relPath === "/dimension") { if (relPath === "/dimension") {
return allRerender(); return allRerender();
} }
return rereneder(s, path); return rerender(s, path);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment