fix: apply ESLint rule vue/component-name-in-template-casing

This commit is contained in:
iamsivin
2024-07-25 19:42:48 +05:30
parent 0008fca511
commit 3ce70f4e14
352 changed files with 1019 additions and 1037 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
<template>
<div id="app" class="woot-survey-wrap">
<response />
<Response />
</div>
</template>
@@ -39,16 +39,16 @@ export default {
<label class="text-base font-medium text-black-800">
{{ $t('SURVEY.FEEDBACK.LABEL') }}
</label>
<text-area
<TextArea
v-model="feedback"
class="my-5"
:placeholder="$t('SURVEY.FEEDBACK.PLACEHOLDER')"
/>
<div class="flex items-center font-medium float-right">
<custom-button @click="onClick">
<spinner v-if="feedback" class="p-0" />
<CustomButton @click="onClick">
<Spinner v-if="feedback" class="p-0" />
{{ $t('SURVEY.FEEDBACK.BUTTON_TEXT') }}
</custom-button>
</CustomButton>
</div>
</div>
</template>
+5 -5
View File
@@ -140,7 +140,7 @@ export default {
v-if="isLoading"
class="flex items-center justify-center flex-1 h-full bg-black-25"
>
<spinner size="" />
<Spinner size="" />
</div>
<div
v-else
@@ -157,7 +157,7 @@ export default {
>
{{ $t('SURVEY.DESCRIPTION', { inboxName }) }}
</p>
<banner
<Banner
v-if="shouldShowBanner"
:show-success="shouldShowSuccessMesage"
:show-error="shouldShowErrorMesage"
@@ -169,11 +169,11 @@ export default {
>
{{ $t('SURVEY.RATING.LABEL') }}
</label>
<rating
<Rating
:selected-rating="selectedRating"
@selectRating="selectRating"
/>
<feedback
<Feedback
v-if="enableFeedbackForm"
:is-updating="isUpdating"
:is-button-disabled="isButtonDisabled"
@@ -182,7 +182,7 @@ export default {
/>
</div>
<div class="mb-3">
<branding />
<Branding />
</div>
</div>
</div>