From 65e2aa572b6ac7c0eecdf036f5344ad097231694 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 23 Nov 2023 13:49:45 +0700 Subject: [PATCH] UBER-1167: Revert All/Active/Backlog for issues (#4047) + Fix pull request template Signed-off-by: Andrey Sobolev --- .github/pull_request_template.md | 8 ++++++++ models/tracker/src/index.ts | 10 +++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 1f43e55904..ad8e42206e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,6 +6,9 @@ * [ ] - UI test added to added/changed functionality? * [ ] - Screenshot is added to PR if applicable ? +* [ ] - Does a local formatting is applied (rush format) +* [ ] - Does a local svele-check is applied (rush svelte check) +* [ ] - Does a local UI tests are executed [UI Testing](../tests/readme.md) * [ ] - Does the code work? Check whether function and logic are correct. * [ ] - Does Changelog.md is updated with changes? * [ ] - Does the translations are up to date? @@ -21,3 +24,8 @@ ## Related issues A list of closed updated issues + +## Contributor requirements + +* [ ] - Sign-off is provided. [DCO](https://github.com/apps/dco) +* [ ] - GPG Signature is provided. [GPG](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits) diff --git a/models/tracker/src/index.ts b/models/tracker/src/index.ts index 6abad1728f..1f7a4846ff 100644 --- a/models/tracker/src/index.ts +++ b/models/tracker/src/index.ts @@ -330,9 +330,9 @@ function defineApplication ( component: tracker.component.MyIssues, componentProps: { config: [ + ['assigned', view.string.Assigned, {}], ['active', tracker.string.Active, {}], ['backlog', tracker.string.Backlog, {}], - ['assigned', view.string.Assigned, {}], ['created', view.string.Created, {}], ['subscribed', view.string.Subscribed, {}] ] @@ -348,9 +348,9 @@ function defineApplication ( space: undefined, title: tracker.string.AllIssues, config: [ + ['all', tracker.string.All, {}], ['active', tracker.string.Active, {}], - ['backlog', tracker.string.Backlog, {}], - ['all', tracker.string.All, {}] + ['backlog', tracker.string.Backlog, {}] ] } }, @@ -387,9 +387,9 @@ function defineApplication ( componentProps: { title: tracker.string.Issues, config: [ + ['all', tracker.string.All, {}], ['active', tracker.string.Active, {}], - ['backlog', tracker.string.Backlog, {}], - ['all', tracker.string.All, {}] + ['backlog', tracker.string.Backlog, {}] ] } },