mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
30484a0615
* fix(editor): Resolve vue 3 related console-warnings Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Use span as component wrapper instead of div Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> * Wrap popover component in span Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> --------- Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
19 lines
359 B
Vue
19 lines
359 B
Vue
<template>
|
|
<span>
|
|
<n8n-tooltip content=" " placement="top">
|
|
<template #content>
|
|
<slot />
|
|
</template>
|
|
<font-awesome-icon :class="$style['icon']" icon="exclamation-triangle"></font-awesome-icon>
|
|
</n8n-tooltip>
|
|
</span>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
.icon {
|
|
font-size: 14px;
|
|
height: 18px;
|
|
color: $warning-tooltip-color;
|
|
}
|
|
</style>
|