Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
rjs_json_form
Commits
ee725769
Commit
ee725769
authored
Feb 28, 2019
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trivial fix
parent
13abbb34
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
demo/xmla_connection/wizard.js
demo/xmla_connection/wizard.js
+4
-4
No files found.
demo/xmla_connection/wizard.js
View file @
ee725769
...
...
@@ -362,7 +362,7 @@
used_diemensions
,
path
;
function
reren
e
der
(
sub_scope
,
rerender_path
)
{
function
rerender
(
sub_scope
,
rerender_path
)
{
var
queue
;
if
(
!
used_diemensions
)
{
queue
=
get_used_dimensions
(
g
)
...
...
@@ -406,7 +406,7 @@
if
(
g
.
props
.
xmla_connections
.
hasOwnProperty
(
i
))
{
s
=
g
.
props
.
xmla_connections
[
i
];
if
(
s
)
{
tasks
.
push
(
reren
e
der
(
s
,
i
));
tasks
.
push
(
rerender
(
s
,
i
));
}
}
}
...
...
@@ -424,7 +424,7 @@
if
(
g
.
props
.
xmla_connections
.
hasOwnProperty
(
path
))
{
if
(
p
===
path
&&
action
===
"
add
"
)
{
g
.
props
.
xmla_connections
[
path
]
=
scope
;
return
reren
e
der
(
scope
,
path
);
return
rerender
(
scope
,
path
);
}
s
=
g
.
props
.
xmla_connections
[
path
];
if
(
scope
===
s
)
{
...
...
@@ -435,7 +435,7 @@
if
(
relPath
===
"
/dimension
"
)
{
return
allRerender
();
}
return
reren
e
der
(
s
,
path
);
return
rerender
(
s
,
path
);
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment