Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icon of the item become blank when uses nested for-each #6239

Open
nobuko-yamada opened this issue Dec 10, 2024 · 1 comment
Open

Icon of the item become blank when uses nested for-each #6239

nobuko-yamada opened this issue Dec 10, 2024 · 1 comment
Assignees

Comments

@nobuko-yamada
Copy link

nobuko-yamada commented Dec 10, 2024

Describe the Bug with repro steps

As we can ssee below, the icon of the item edit becomes blank.

Image

What type of Logic App Is this happening in?

Consumption (Portal)

Which operating system are you using?

Windows

Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg

Yes

Workflow JSON

{
    "definition": {
        "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        "contentVersion": "1.0.0.0",
        "triggers": {
            "When_a_HTTP_request_is_received": {
                "type": "Request",
                "kind": "Http",
                "conditions": []
            }
        },
        "actions": {
            "For_each_1": {
                "foreach": "@variables('sample_array')",
                "actions": {
                    "For_each_2": {
                        "foreach": "@items('For_each_1')?['type']",
                        "actions": {},
                        "type": "Foreach"
                    }
                },
                "runAfter": {
                    "Initialize_variable": [
                        "Succeeded"
                    ]
                },
                "type": "Foreach"
            },
            "Initialize_variable": {
                "runAfter": {},
                "type": "InitializeVariable",
                "inputs": {
                    "variables": [
                        {
                            "name": "sample_array",
                            "type": "array",
                            "value": [
                                {
                                    "type": [
                                        "sample",
                                        "sample",
                                        "sample"
                                    ],
                                    "Id": 1,
                                    "value": "test1"
                                },
                                {
                                    "type": [
                                        "sample",
                                        "sample",
                                        "sample"
                                    ],
                                    "Id": 2,
                                    "value": "test2"
                                },
                                {
                                    "type": [
                                        "sample",
                                        "sample",
                                        "sample"
                                    ],
                                    "Id": 3,
                                    "value": "test3"
                                }
                            ]
                        }
                    ]
                }
            }
        },
        "outputs": {},
        "parameters": {
            "$connections": {
                "type": "Object",
                "defaultValue": {}
            }
        }
    },
    "parameters": {
        "$connections": {
            "value": {}
        }
    }
}

Screenshots or Videos

No response

Browser

Edge

Additional context

No response

@takyyon
Copy link
Contributor

takyyon commented Dec 11, 2024

Eric is going to look more into this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants