Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
fix(C.V.): Fix missing parameter in redirect action on master (#5634)
Browse files Browse the repository at this point in the history
  • Loading branch information
loiclau authored and Guillaume28 committed Sep 11, 2017
1 parent 9d2802a commit 78ba085
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion www/include/home/customViews/widgetParam.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ <h4>{$elem.header_title}</h4>
if (typeof(view) != 'undefined') {
var viewId = view.item(0).firstChild.data;
parent.jQuery(
"[name=widget_" + viewId + "_" + widgetId + "]").attr('src', widgetUrl + '?widgetId=' + widgetId
"[name=widget_" + viewId + "_" + widgetId + "]").attr('src', widgetUrl +
'?widgetId=' + widgetId + '&customViewId=' + viewId
);
jQuery('#config-popin').centreonPopin('close');
} else if (typeof(error) != 'undefined') {
Expand Down

0 comments on commit 78ba085

Please sign in to comment.