mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -1,10 +1,10 @@
|
||||
<template>
|
||||
<ModalDrawer
|
||||
:name="VALUE_SURVEY_MODAL_KEY"
|
||||
:eventBus="modalBus"
|
||||
:beforeClose="closeDialog"
|
||||
:event-bus="modalBus"
|
||||
:before-close="closeDialog"
|
||||
:modal="false"
|
||||
:wrapperClosable="false"
|
||||
:wrapper-closable="false"
|
||||
direction="btt"
|
||||
width="120px"
|
||||
:class="$style.valueSurvey"
|
||||
@@ -22,8 +22,8 @@
|
||||
<n8n-button
|
||||
type="tertiary"
|
||||
:label="(value - 1).toString()"
|
||||
@click="selectSurveyValue((value - 1).toString())"
|
||||
square
|
||||
@click="selectSurveyValue((value - 1).toString())"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -40,7 +40,7 @@
|
||||
@update:modelValue="onInputChange"
|
||||
/>
|
||||
<div :class="$style.button">
|
||||
<n8n-button label="Send" float="right" @click="send" :disabled="!isEmailValid" />
|
||||
<n8n-button label="Send" float="right" :disabled="!isEmailValid" @click="send" />
|
||||
</div>
|
||||
</div>
|
||||
<div :class="$style.disclaimer">
|
||||
@@ -76,11 +76,11 @@ const DEFAULT_FEEDBACK_TITLE =
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ValueSurvey',
|
||||
mixins: [workflowHelpers],
|
||||
props: ['isActive'],
|
||||
components: {
|
||||
ModalDrawer,
|
||||
},
|
||||
mixins: [workflowHelpers],
|
||||
props: ['isActive'],
|
||||
setup() {
|
||||
return {
|
||||
...useToast(),
|
||||
|
||||
Reference in New Issue
Block a user