Unable to sort on multiple fields in Saved Search

Can anyone help me configure this sort section in Edit Search area for a saved search?

I want to be able to sort by “timestamp” and if they are the same, by “sequence”. However, when in the dashboard view, when I click to sort buttons in the column “Time”, nothing happens. I cannot sort descending or ascending properly. However, when I execute a search and sort in the Console tool, sorting works as intended:

GET index/_search
{
  "sort": [
    {
      "timestamp": {
        "order": "desc"
      }
    },
    {
      "sequence": {
        "order": "desc"
      }
    }
  ]
}

Is anyone able to let me know what I am doing wrong with configuring saved search incorrectly??