Skip to content

Commit

Permalink
Merge pull request #1105 from PrefectHQ/more-tabs
Browse files Browse the repository at this point in the history
fix ordering of submitted and running
  • Loading branch information
cicdw authored Nov 1, 2021
2 parents 9cc81c2 + 1c2a34f commit 08efd2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

### Bugfixes

- Fix ordering of running and submitted runs tabs - [#1105](https://github.com/PrefectHQ/ui/pull/1105)
- Adds a try/catch block when deleting a membership in the removeUser method - [#1094](https://github.com/PrefectHQ/ui/pull/1094)

- Internal: update CircleCI config slack orb (add `@` to mentions) - [#1053](https://github.com/PrefectHQ/ui/pull/1053)
- Disable start run button for late flow runs -[#1087](https://github.com/PrefectHQ/ui/pull/1087)
- Filter by scheduled runs in the Flow runs table - [#1079](https://github.com/PrefectHQ/ui/pull/1079)
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Dashboard/InProgress-Tile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default {
data() {
const tabs = {
all: 0,
submitted: 1,
running: 2
running: 1,
submitted: 2
}
return {
Expand Down

0 comments on commit 08efd2c

Please sign in to comment.