We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a6daa4 commit 06e1d2cCopy full SHA for 06e1d2c
1 file changed
pcd-website/src/components/InfoModal.vue
@@ -76,7 +76,11 @@ onUnmounted(() => {
76
{{ props.autoOpened ? t('nav.info_modal_go_to_map') : t('nav.info_modal_back_to_map') }}
77
</button>
78
<label v-if="props.autoOpened" class="info-modal-suppress">
79
- <input type="checkbox" v-model="dontShowAgain" />
+ <input
80
+ type="checkbox"
81
+ v-model="dontShowAgain"
82
+ @keydown.enter.prevent="dontShowAgain = !dontShowAgain"
83
+ />
84
{{ t('nav.info_modal_dont_show_again') }}
85
</label>
86
</div>
0 commit comments