Compare commits
1 Commits
test-html
...
v4.9.1-fix
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2210c6809f |
@@ -131,6 +131,10 @@ export async function rewriteAppWorkflowToSimple(formatNodes: StoreNodeItemType[
|
|||||||
if (!val) {
|
if (!val) {
|
||||||
input.value = [];
|
input.value = [];
|
||||||
} else if (Array.isArray(val)) {
|
} else if (Array.isArray(val)) {
|
||||||
|
// Not rewrite reference value
|
||||||
|
if (val.length === 2 && val.every((item) => typeof item === 'string')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
input.value = val
|
input.value = val
|
||||||
.map((dataset: { datasetId: string }) => ({
|
.map((dataset: { datasetId: string }) => ({
|
||||||
datasetId: dataset.datasetId
|
datasetId: dataset.datasetId
|
||||||
|
|||||||
Reference in New Issue
Block a user