-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kirill Zolottsev
authored
Dec 27, 2022
1 parent
620773c
commit 31dd631
Showing
2 changed files
with
39 additions
and
34 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Chore | ||
description: Не фича и не баг | ||
labels: ['enhancement'] | ||
assignees: | ||
- TorinAsakura | ||
body: | ||
- type: input | ||
id: task-type | ||
attributes: | ||
label: Какого рода задача? | ||
placeholder: Поменять значения или изменить логику | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: details | ||
attributes: | ||
label: Что и где будем менять? | ||
placeholder: | | ||
**_Например:_** | ||
Нужно изменить условие функции | ||
```javascript | ||
if(servicePayment === 1) { | ||
return | ||
} | ||
``` | ||
на | ||
```javascript | ||
if(!servicePayment && !servicePaymentValue){ | ||
window.location.href = homePageUrl || userProfilePageUrl | ||
return null | ||
} | ||
```' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: ref | ||
attributes: | ||
label: Укажите референс | ||
placeholder: В связи с чем было принято решение? Ссылка на другую задачу, ПР, в общем – нужен контекст |