Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
causing edit decision table link not working
  • Loading branch information
yvoswillens committed Aug 11, 2020
1 parent a51a1a3 commit a1d776b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ angular.module('flowableModeler')
if (decision) {
$rootScope.editorHistory = [];
if (decision.modelType === 4) {
$location.url("/decision-table-editor/" + eFncodeURIComponent(decision.id));
$location.url("/decision-table-editor/" + encodeURIComponent(decision.id));
} else if (decision.modelType === 6) {
$location.url("/decision-service-editor/" + encodeURIComponent(decision.id));
}
Expand Down

0 comments on commit a1d776b

Please sign in to comment.