mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
fix(editor): Fix execution debug button (#9018)
This commit is contained in:
parent
286fa5cd7e
commit
aac77e1668
|
@ -79,14 +79,7 @@
|
||||||
</n8n-text>
|
</n8n-text>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<n8n-button
|
<n8n-button size="medium" :type="debugButtonData.type" :class="$style.debugLink">
|
||||||
size="medium"
|
|
||||||
:type="debugButtonData.type"
|
|
||||||
:class="{
|
|
||||||
[$style.debugLink]: true,
|
|
||||||
[$style.secondary]: debugButtonData.type === 'secondary',
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<router-link
|
<router-link
|
||||||
:to="{
|
:to="{
|
||||||
name: VIEWS.EXECUTION_DEBUG,
|
name: VIEWS.EXECUTION_DEBUG,
|
||||||
|
@ -297,7 +290,13 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
.debugLink {
|
.debugLink {
|
||||||
height: 42px;
|
|
||||||
margin-right: var(--spacing-xs);
|
margin-right: var(--spacing-xs);
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
a > span {
|
||||||
|
display: block;
|
||||||
|
padding: var(--button-padding-vertical, var(--spacing-xs))
|
||||||
|
var(--button-padding-horizontal, var(--spacing-m));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue