refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-12-28 09:49:58 +01:00
committed by GitHub
parent 639afcd7a5
commit 68cff4c59e
304 changed files with 3428 additions and 3516 deletions

View File

@@ -7,7 +7,7 @@
[$style.menuCollapsed]: mainSidebarCollapsed,
}"
>
<n8n-radio-buttons :modelValue="activeTab" :options="items" @update:modelValue="onSelect" />
<n8n-radio-buttons :model-value="activeTab" :options="items" @update:modelValue="onSelect" />
</div>
</template>
@@ -20,12 +20,7 @@ import { mapStores } from 'pinia';
import { useUIStore } from '@/stores/ui.store';
export default defineComponent({
name: 'tab-bar',
data() {
return {
MAIN_HEADER_TABS,
};
},
name: 'TabBar',
props: {
items: {
type: Array as PropType<ITabBarItem[]>,
@@ -36,6 +31,11 @@ export default defineComponent({
default: MAIN_HEADER_TABS.WORKFLOW,
},
},
data() {
return {
MAIN_HEADER_TABS,
};
},
computed: {
...mapStores(useUIStore),
mainSidebarCollapsed(): boolean {