chore: Lintfix and format (no-changelog) (#13705)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-03-05 16:50:43 +01:00
committed by GitHub
parent 9e83ff51da
commit d2dd1796a8
45 changed files with 66 additions and 70 deletions

View File

@@ -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>