mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
chore: Lintfix and format (no-changelog) (#13705)
This commit is contained in:
committed by
GitHub
parent
9e83ff51da
commit
d2dd1796a8
@@ -1013,7 +1013,7 @@ async function optionSelected(command: string) {
|
||||
onMounted(() => {
|
||||
props.eventBus.on('optionSelected', optionSelected);
|
||||
|
||||
tempValue.value = displayValue.value as string;
|
||||
tempValue.value = displayValue.value;
|
||||
|
||||
if (node.value) {
|
||||
nodeName.value = node.value.name;
|
||||
@@ -1029,7 +1029,7 @@ onMounted(() => {
|
||||
displayValue.value !== null &&
|
||||
displayValue.value.toString().charAt(0) !== '#'
|
||||
) {
|
||||
const newValue = rgbaToHex(displayValue.value as string);
|
||||
const newValue = rgbaToHex(displayValue.value);
|
||||
if (newValue !== null) {
|
||||
tempValue.value = newValue;
|
||||
}
|
||||
@@ -1100,12 +1100,12 @@ watch(
|
||||
// Do not set for color with alpha else wrong value gets displayed in field
|
||||
return;
|
||||
}
|
||||
tempValue.value = displayValue.value as string;
|
||||
tempValue.value = displayValue.value;
|
||||
},
|
||||
);
|
||||
|
||||
watch(remoteParameterOptionsLoading, () => {
|
||||
tempValue.value = displayValue.value as string;
|
||||
tempValue.value = displayValue.value;
|
||||
});
|
||||
|
||||
// Focus input field when changing between fixed and expression
|
||||
@@ -1625,8 +1625,8 @@ onUpdated(async () => {
|
||||
</div>
|
||||
<div
|
||||
v-if="option.description"
|
||||
class="option-description"
|
||||
v-n8n-html="getOptionsOptionDescription(option)"
|
||||
class="option-description"
|
||||
></div>
|
||||
</div>
|
||||
</N8nOption>
|
||||
@@ -1658,8 +1658,8 @@ onUpdated(async () => {
|
||||
<div class="option-headline">{{ getOptionsOptionDisplayName(option) }}</div>
|
||||
<div
|
||||
v-if="option.description"
|
||||
class="option-description"
|
||||
v-n8n-html="getOptionsOptionDescription(option)"
|
||||
class="option-description"
|
||||
></div>
|
||||
</div>
|
||||
</N8nOption>
|
||||
|
||||
Reference in New Issue
Block a user