mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-14 02:02:19 +00:00
Fixed injection minification issue (#8608)
This commit is contained in:
parent
4846bc5769
commit
d170f0b1bd
1 changed files with 2 additions and 2 deletions
|
|
@ -25,9 +25,9 @@
|
|||
|
||||
$modal.open({
|
||||
templateUrl: 'modals/task-extra-notes.html',
|
||||
controller: function ($scope, task) {
|
||||
controller: ['$scope', 'task', function ($scope, task) {
|
||||
$scope.task = task;
|
||||
},
|
||||
}],
|
||||
resolve: {
|
||||
task: function() {
|
||||
return task;
|
||||
|
|
|
|||
Loading…
Reference in a new issue