From 48d9e0c2c95ada312278c2068c153f2f91b01dd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Tue, 5 Aug 2014 17:09:45 +0200 Subject: [PATCH] fixed problem with video enable disable show label --- app/coffee/modules/admin/project-profile.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/coffee/modules/admin/project-profile.coffee b/app/coffee/modules/admin/project-profile.coffee index 4459f212..23481f78 100644 --- a/app/coffee/modules/admin/project-profile.coffee +++ b/app/coffee/modules/admin/project-profile.coffee @@ -143,6 +143,8 @@ ProjectFeaturesDirective = ($log, $repo, $confirm) -> $scope.$watch "project", (project) -> if project.videoconferences? $scope.isVideoconferenceActivated = true + else + $scope.isVideoconferenceActivated = false return {link:link}