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

fix: change 'channel' to 'group' #929

Closed
wants to merge 1 commit 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
2 changes: 1 addition & 1 deletion src/components/Pages/Contact.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>

Check warning on line 1 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Component name "Contact" should always be multi-word
<v-main>
<v-responsive max-width="840px" min-width="250px" >
<h1>Get in touch with the team</h1>
<p>Thank you for your interest. We really want to hear what you've got to say.</p>
<p>Have you got a question? First, check our <a href="https://www.mediawiki.org/wiki/Wikibase/FAQ" target="_blank">FAQ</a> to see if we've already answered it. We're constantly updating it with new questions. if you don't find an answer there, feel free to use the contact form below. Thanks!</p>
<h3>Want to connect with the Wikibase.cloud community?</h3>
<p>You can visit our <a href="https://t.me/joinchat/FgqAnxNQYOeAKmyZTIId9g" target="_blank">Telegram channel</a> or join our <a href="https://lists.wikimedia.org/postorius/lists/wikibase-cloud.lists.wikimedia.org/" target="_blank">mailing list</a>.</p>
<p>You can visit our <a href="https://t.me/joinchat/FgqAnxNQYOeAKmyZTIId9g" target="_blank">Telegram group</a> or join our <a href="https://lists.wikimedia.org/postorius/lists/wikibase-cloud.lists.wikimedia.org/" target="_blank">mailing list</a>.</p>
<v-responsive max-width="512px">
<h2 class="mt-10 mb-2">Contact Us</h2>
<v-text-field
Expand Down Expand Up @@ -101,8 +101,8 @@
this.$recaptcha('contact').then((recaptcha) => {
this.$api.contact(
{
name: name,

Check warning on line 104 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Expected property shorthand
subject: subject,

Check warning on line 105 in src/components/Pages/Contact.vue

View workflow job for this annotation

GitHub Actions / build (22)

Expected property shorthand
contactDetails: contactDetails,
message: message,
recaptcha: recaptcha
Expand Down
Loading