Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disabled copy-paste functionality for questions in the quiz assesment #170

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/Questions/Body.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
></p>
</div>
<!-- question text -->
<div class="mx-6 md:mx-10">
<div class="mx-6 md:mx-10" inert>
<p :class="questionTextClass" data-test="text" v-html="text"></p>
</div>
<div :class="orientationClass">
Expand All @@ -52,7 +52,7 @@
/>
</div>
<!-- question image container -->
<div :class="questionImageContainerClass" v-if="isQuestionImagePresent">
<div :class="questionImageContainerClass" v-if="isQuestionImagePresent" inert>
<img
:src="imageData.url"
class="object-contain h-full w-full"
Expand Down Expand Up @@ -97,6 +97,7 @@
v-html="option.text"
class="ml-2 h-full place-self-center text-base sm:text-lg"
:data-test="`option-${optionIndex}`"
inert
></div>
</label>
</div>
Expand Down
Loading