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

Unable to drag and drop independent node. #5265

Closed
vgouth opened this issue Aug 2, 2024 · 4 comments
Closed

Unable to drag and drop independent node. #5265

vgouth opened this issue Aug 2, 2024 · 4 comments

Comments

@vgouth
Copy link

vgouth commented Aug 2, 2024

Describe the Bug with repro steps

  1. Create a standard logic app in VS code and open the designer.
  2. Add request trigger.
  3. Add some actions of your choice which are not dependent on other(independent).
  4. Try drag and drop the independent node up and down.

Expected: We should be able to drag and drop the independent node.

Actual: Unable to drag and drop independent node.

What type of Logic App Is this happening in?

Standard (VSCode)

Are you using new designer or old designer

New Designer

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#",
        "actions": {
            "Compose": {
                "type": "Compose",
                "inputs": "ada",
                "runAfter": {}
            },
            "Compose_1": {
                "type": "Compose",
                "inputs": "fadfa",
                "runAfter": {}
            },
            "Compose_2": {
                "type": "Compose",
                "inputs": "hert",
                "runAfter": {}
            },
            "Compose_3": {
                "type": "Compose",
                "inputs": "hs",
                "runAfter": {
                    "Compose_1": [
                        "SUCCEEDED"
                    ],
                    "Compose": [
                        "SUCCEEDED"
                    ],
                    "Compose_2": [
                        "SUCCEEDED"
                    ]
                }
            },
            "List_files_in_folder": {
                "type": "ApiConnection",
                "inputs": {
                    "host": {
                        "connection": {
                            "referenceName": "dropbox"
                        }
                    },
                    "method": "get",
                    "path": "/datasets/default/folders/@{encodeURIComponent(encodeURIComponent('6e202211-2856-4d17-9ded-5beb8b8626b0'))}"
                },
                "runAfter": {
                    "Compose_3": [
                        "SUCCEEDED"
                    ]
                },
                "metadata": {
                    "6e202211-2856-4d17-9ded-5beb8b8626b0": "/"
                }
            },
            "For_each": {
                "type": "foreach",
                "foreach": "@body('List_files_in_folder')",
                "actions": {
                    "Compose_4": {
                        "type": "Compose",
                        "inputs": "@item()?['DisplayName']"
                    }
                },
                "runAfter": {
                    "List_files_in_folder": [
                        "SUCCEEDED"
                    ]
                }
            },
            "Compose_5": {
                "type": "Compose",
                "inputs": "jds",
                "runAfter": {
                    "For_each": [
                        "SUCCEEDED"
                    ]
                }
            }
        },
        "contentVersion": "1.0.0.0",
        "outputs": {},
        "triggers": {
            "When_a_HTTP_request_is_received": {
                "type": "Request",
                "kind": "Http"
            }
        }
    },
    "kind": "Stateful"
}

Screenshots or Videos

drag.and.drop.mp4

drag and drop1

Browser

VS Code

Additional context

VSIX Version: 4.44.5

@ccastrotrejo
Copy link
Contributor

This issue is related to an update in the vscode app, the workaround for this and the new implementation that vscode came up with is Pressing Shift while dragging and dropping, this will re-enable the behavior.

@niphlod
Copy link

niphlod commented Aug 6, 2024

confirmed, shift pressing restores the behaviour ... jm2c: I'd vote to revert this if possible

@ccastrotrejo
Copy link
Contributor

ccastrotrejo commented Aug 6, 2024

Hi @niphlod, this issue is coming from the vscode app. Here is the main issue. #5265, we will keep track of it to be aware of their changes.
So far the issue has been identified in the 1.92.0 version. Version 1.91.1 seems to work fine. Another workaround is to install the 1.91.1 version

@ccastrotrejo
Copy link
Contributor

This is now fixed in vscode 1.92.1.

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

No branches or pull requests

3 participants