mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +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,12 +1,12 @@
|
||||
<template>
|
||||
<div :class="classes" role="alert">
|
||||
<div :class="$style.messageSection">
|
||||
<div :class="$style.icon" v-if="!iconless">
|
||||
<n8n-icon :icon="getIcon" :size="getIconSize" />
|
||||
<div v-if="!iconless" :class="$style.icon">
|
||||
<N8nIcon :icon="getIcon" :size="getIconSize" />
|
||||
</div>
|
||||
<n8n-text size="small">
|
||||
<N8nText size="small">
|
||||
<slot />
|
||||
</n8n-text>
|
||||
</N8nText>
|
||||
|
||||
<slot name="actions" />
|
||||
</div>
|
||||
@@ -28,7 +28,7 @@ const CALLOUT_DEFAULT_ICONS: { [key: string]: string } = {
|
||||
};
|
||||
|
||||
export default defineComponent({
|
||||
name: 'n8n-callout',
|
||||
name: 'N8nCallout',
|
||||
components: {
|
||||
N8nText,
|
||||
N8nIcon,
|
||||
|
||||
Reference in New Issue
Block a user