mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
address comments
This commit is contained in:
parent
ae9bb9b02e
commit
e8f9fc0f5e
|
@ -10,8 +10,8 @@
|
|||
<n8n-tooltip placement="bottom-start" :value="showTriggerWaitingWarning" :disabled="!showTriggerWaitingWarning" :manual="true">
|
||||
<div slot="content" :class="$style.triggerWarning">{{ $locale.baseText('ndv.backToCanvas.waitingForTriggerWarning') }}</div>
|
||||
<div :class="$style.backToCanvas" @click="close">
|
||||
<n8n-icon icon="arrow-left" color="text-xlight" size="small" />
|
||||
<n8n-text color="text-xlight" size="small">{{ $locale.baseText('ndv.backToCanvas') }}</n8n-text>
|
||||
<n8n-icon icon="arrow-left" color="text-xlight" size="medium" />
|
||||
<n8n-text color="text-xlight" size="medium" :bold="true">{{ $locale.baseText('ndv.backToCanvas') }}</n8n-text>
|
||||
</div>
|
||||
</n8n-tooltip>
|
||||
|
||||
|
@ -169,7 +169,7 @@ export default mixins(externalHooks, nodeHelpers, workflowHelpers).extend({
|
|||
.backToCanvas {
|
||||
position: fixed;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
left: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<n8n-button
|
||||
:loading="workflowRunning"
|
||||
:label="label"
|
||||
size="small"
|
||||
@click="onClick"
|
||||
/>
|
||||
</template>
|
||||
|
|
|
@ -79,6 +79,7 @@ export default Vue.extend({
|
|||
overflow-wrap: anywhere;
|
||||
height: 60px;
|
||||
overflow: hidden;
|
||||
padding-right: var(--spacing-s);
|
||||
}
|
||||
|
||||
.title {
|
||||
|
|
Loading…
Reference in a new issue