edtro / EdTro.AzureDevOps.Extensions.querybasedboards

Query Based Boards enables a user to visualize the result of work item queries as a board and track the dependencies.
MIT License
23 stars 2 forks source link

Show Remaining Work on the card like the normal board does #78

Closed bergamin closed 1 year ago

bergamin commented 1 year ago

Please, add the Remaining Work on the card like the normal board does. This would help quickly check for tasks that weren't zeroed when closed

Normal board:

image

Query Based Boards:

image

Thanks

edtro commented 1 year ago

Dear @bergamin You can add extra fields while using the configuration, see: https://github.com/edtro/EdTro.AzureDevOps.Extensions.querybasedboards/blob/master/public/config.md

This should visualize the field on the card, as you requested. Just let me know if this is correct. Kr Edward

bergamin commented 1 year ago

@edtro, thanks for the insight. I thought of that too, but I couldn't find the setting related to the remaining field. My settings right now looks like this:

{
    "settings":{
       "showTags":true
    }
}

And none of the other options seem to address remaining work:

export interface IConfigDataSettings {
    showFilter?: boolean,
    showArrows?: boolean,
    zoomLevel?: number, //0, 1, 2 or 3  
    showProject?: boolean,
    showStoryPoints?: boolean,
    showTags?: boolean, 
}
bergamin commented 1 year ago

@edtro, nevermind. I've just discovered that this field is set differently:

{
  "settings": {
    "showTags":true
  },
  "fields": [
    {
      "name":"Microsoft.VSTS.Scheduling.RemainingWork",
      "title":"Remaining"
    }
  ]
}

image

Thanks for the help!