Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Findeton committed Jun 22, 2024
1 parent d2234a4 commit 2a1f9b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avBooth/booth-directive/booth-directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ angular.module('avBooth')
var uuid = $location.search().uuid;
Authmethod.getLivePreview(uuid)
.then(function (res) {
previewResult.resolve(res.data)
previewResult.resolve(res.data);
}, previewResult.reject);
} else {
previewResult.resolve(JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId))));
Expand Down Expand Up @@ -976,7 +976,7 @@ angular.module('avBooth')
var uuid = $location.search().uuid;
Authmethod.getLivePreview(uuid)
.then(function (res) {
previewResult.resolve(res.data)
previewResult.resolve(res.data);
}, previewResult.reject);
} else {
previewResult.resolve(JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId))));
Expand Down

0 comments on commit 2a1f9b8

Please sign in to comment.