Skip to content

Commit

Permalink
fix(contact): correct textarea id
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Sep 14, 2023
1 parent 6e66a3e commit 97853f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
>
<textarea
v-if="v$.message"
id="input-message"
:id="`${
runtimeConfig.public.vio.isInProduction ? 'prod' : 'dev'
}-input-message`"
class="form-input"
:placeholder="t('placeholderMessage')"
rows="10"
Expand Down Expand Up @@ -80,6 +82,7 @@ definePageMeta({
})
const { t } = useI18n()
const runtimeConfig = useRuntimeConfig()
// data
const form = reactive({
Expand Down

0 comments on commit 97853f1

Please sign in to comment.