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>
|
||||
</div>
|
||||
<div>
|
||||
<n8n-button
|
||||
size="medium"
|
||||
:type="debugButtonData.type"
|
||||
:class="{
|
||||
[$style.debugLink]: true,
|
||||
[$style.secondary]: debugButtonData.type === 'secondary',
|
||||
}"
|
||||
>
|
||||
<n8n-button size="medium" :type="debugButtonData.type" :class="$style.debugLink">
|
||||
<router-link
|
||||
:to="{
|
||||
name: VIEWS.EXECUTION_DEBUG,
|
||||
|
@ -297,7 +290,13 @@ export default defineComponent({
|
|||
}
|
||||
|
||||
.debugLink {
|
||||
height: 42px;
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue