mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): fix pin data button active state (#4157)
fix: fix pin data button active state
This commit is contained in:
parent
40ebbeaefc
commit
3df5ea5ebd
|
@ -80,9 +80,9 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<n8n-icon-button
|
<n8n-icon-button
|
||||||
:class="`ml-2xs ${$style['pin-data-button']} ${hasPinData ? $style['pin-data-button-active'] : ''}`"
|
:class="['ml-2xs', $style['pin-data-button']]"
|
||||||
type="tertiary"
|
type="tertiary"
|
||||||
active
|
:active="hasPinData"
|
||||||
icon="thumbtack"
|
icon="thumbtack"
|
||||||
:disabled="editMode.enabled || (inputData.length === 0 && !hasPinData) || isReadOnly"
|
:disabled="editMode.enabled || (inputData.length === 0 && !hasPinData) || isReadOnly"
|
||||||
@click="onTogglePinData({ source: 'pin-icon-click' })"
|
@click="onTogglePinData({ source: 'pin-icon-click' })"
|
||||||
|
@ -1463,17 +1463,6 @@ export default mixins(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pin-data-button-active {
|
|
||||||
&,
|
|
||||||
&:hover,
|
|
||||||
&:focus,
|
|
||||||
&:active {
|
|
||||||
border-color: var(--color-primary);
|
|
||||||
color: var(--color-primary);
|
|
||||||
background: var(--color-primary-tint-2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.spinner {
|
.spinner {
|
||||||
* {
|
* {
|
||||||
color: var(--color-primary);
|
color: var(--color-primary);
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { IPinData } from 'n8n-workflow';
|
||||||
import { stringSizeInBytes } from '@/components/helpers';
|
import { stringSizeInBytes } from '@/components/helpers';
|
||||||
import { MAX_WORKFLOW_PINNED_DATA_SIZE, PIN_DATA_NODE_TYPES_DENYLIST } from '@/constants';
|
import { MAX_WORKFLOW_PINNED_DATA_SIZE, PIN_DATA_NODE_TYPES_DENYLIST } from '@/constants';
|
||||||
|
|
||||||
interface IPinDataContext {
|
export interface IPinDataContext {
|
||||||
node: INodeUi;
|
node: INodeUi;
|
||||||
$showError(error: Error, title: string): void;
|
$showError(error: Error, title: string): void;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue