Skip to content

Commit

Permalink
fix(groups): issue preventing save
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Jan 21, 2019
1 parent d15bd11 commit 7208253
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@
]
},
"prettier": {
"printWidth": 120
"printWidth": 120,
"singleQuote": true
},
"config": {
"blanket": {
Expand Down
17 changes: 10 additions & 7 deletions src/public/js/angularjs/controllers/groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@
**/

define(['angular', 'underscore', 'jquery', 'modules/helpers', 'uikit', 'history', 'multiselect'], function (
angular,
_,
$,
helpers,
UIkit
) {
define([
'angular',
'underscore',
'jquery',
'modules/helpers',
'uikit',
'jquery_custom',
'history',
'multiselect'
], function (angular, _, $, helpers, UIkit) {
return angular
.module('trudesk.controllers.groups', [])
.controller('groupsCtrl', function ($scope, $http, $timeout, $log) {
Expand Down

0 comments on commit 7208253

Please sign in to comment.