From 2a1f9b843c3f2f4b5042744a1a2af801d02965c4 Mon Sep 17 00:00:00 2001 From: Findeton Date: Sat, 22 Jun 2024 13:53:45 -0500 Subject: [PATCH] wip --- avBooth/booth-directive/booth-directive.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avBooth/booth-directive/booth-directive.js b/avBooth/booth-directive/booth-directive.js index 12d44e43..5d3714c1 100644 --- a/avBooth/booth-directive/booth-directive.js +++ b/avBooth/booth-directive/booth-directive.js @@ -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)))); @@ -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))));