mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix executions bug
This commit is contained in:
parent
661b836962
commit
646c055c9b
|
@ -16,7 +16,7 @@
|
||||||
<n8n-button type="primary" size="small" @click="onRename" :label="$locale.baseText('ndv.title.rename')" />
|
<n8n-button type="primary" size="small" @click="onRename" :label="$locale.baseText('ndv.title.rename')" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div slot="reference" :class="$style.title">
|
<div slot="reference" :class="{[$style.title]: true, [$style.hoverable]: !readOnly}">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
<font-awesome-icon :class="$style.editIcon" icon="pencil-alt" v-if="!readOnly" />
|
<font-awesome-icon :class="$style.editIcon" icon="pencil-alt" v-if="!readOnly" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -84,7 +84,9 @@ export default Vue.extend({
|
||||||
> *:first-child {
|
> *:first-child {
|
||||||
padding-right: var(--spacing-3xs);
|
padding-right: var(--spacing-3xs);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.hoverable {
|
||||||
&:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
.editIcon {
|
.editIcon {
|
||||||
|
|
Loading…
Reference in a new issue