Skip to content

Commit

Permalink
Fix js lint error in app/js/controller/admin/contexts.js
Browse files Browse the repository at this point in the history
  • Loading branch information
evilaliv3 committed Dec 7, 2023
1 parent ab046d3 commit 7e290b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/js/controllers/admin/contexts.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ controller("AdminContextAddCtrl", ["$scope", function($scope) {
var context = new $scope.AdminUtils.new_context();

context.name = $scope.new_context.name;
context.questionnaire_id = 'default';
context.questionnaire_id = "default";
context.order = $scope.newItemOrder($scope.resources.contexts, "order");

context.$save(function(new_context){
Expand Down

0 comments on commit 7e290b7

Please sign in to comment.