actboy168 / vscode-tasks

MIT License
37 stars 14 forks source link

Hidden Composite Tasks are always shown with wrong label #41

Closed dornbirndevelops closed 1 year ago

dornbirndevelops commented 1 year ago

Hello! I have a tasks.json similar to this:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "a",
            "detail": "run a",
            "command": "a",
        },
        {
            "label": "b",
            "detail": "run b",
            "command": "b",
        },
        {
            "label": "ab",
            "detail": "run a, then b",
            "dependsOrder": "sequence",
            "dependsOn": ["a", "b"],
            "options": {
                "statusbar": {
                    "hide": true
                }
            }
        },
    ]
}

In version 0.12.0 the status bar looked like this: image

Since version 0.12.1 the status bar looks like this (shown although hidden, with wrong label): image

Thanks in advance, your extension is one of my personal favorites. 👍🏼