fix: apply ESLint rule vue/component-name-in-template-casing
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user