From 7e8ec7c3e02bfeb66078e8373f9d8ecd462d39e5 Mon Sep 17 00:00:00 2001 From: Vibhu Dujari Date: Mon, 24 Jun 2024 13:24:35 +0530 Subject: [PATCH] fix: warning numbers of monitorer --- app/pods/components/intermediate-contest-view/template.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/pods/components/intermediate-contest-view/template.hbs b/app/pods/components/intermediate-contest-view/template.hbs index f882fff..6f84d73 100644 --- a/app/pods/components/intermediate-contest-view/template.hbs +++ b/app/pods/components/intermediate-contest-view/template.hbs @@ -91,7 +91,7 @@ {{#if (or contest.disallowTabSwitch contest.disallowWindowResize contest.disallowNoFace)}}
{{#if contest.disallowTabSwitch}} - Tab Switching is prohibited on this contest. You will face a penalty of {{contest.tabSwitchPentalty}} mins after 3 faults in case you :- + Tab Switching is prohibited on this contest. You will face a penalty of {{contest.tabSwitchPenalty}} mins after {{contest.allowedTabSwitchesNumber}} faults in case you :- {{/if}} {{#if contest.disallowNoFace}} - Face detection is enabled on this contest. You will face a penalty of {{contest.noFacePenalty}} mins every 5 secs after 3 faults in case :- + Face detection is enabled on this contest. You will face a penalty of {{contest.noFacePenalty}} mins every 5 secs after {{contest.allowedNoFacesNumber}} faults in case :- {{/if}} {{#if contest.disallowMultipleFaces}} - Multiple face detection is enabled on this contest. You will face a penalty of {{contest.multipleFacesPenalty}} mins every 5 secs after 3 faults in case :- + Multiple face detection is enabled on this contest. You will face a penalty of {{contest.multipleFacesPenalty}} mins every 5 secs after {{contest.allowedMultipleFacesNumber}} faults in case :-