mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
9c94050deb
* refactor: replace Vue.extend with defineComponent in editor-ui * fix: change $externalHooks extractions from mixins * fix: refactor externalHooks mixin
35 lines
760 B
Vue
35 lines
760 B
Vue
<template>
|
|
<div :class="$style['parameter-issues']" v-if="issues.length">
|
|
<n8n-tooltip placement="top">
|
|
<template #content>
|
|
<titled-list :title="`${$locale.baseText('parameterInput.issues')}:`" :items="issues" />
|
|
</template>
|
|
<font-awesome-icon icon="exclamation-triangle" />
|
|
</n8n-tooltip>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import TitledList from '@/components/TitledList.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'ParameterIssues',
|
|
components: {
|
|
TitledList,
|
|
},
|
|
props: ['issues'],
|
|
});
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
.parameter-issues {
|
|
width: 20px;
|
|
text-align: right;
|
|
float: right;
|
|
color: #ff8080;
|
|
font-size: var(--font-size-s);
|
|
padding-left: var(--spacing-4xs);
|
|
}
|
|
</style>
|