Quantcast
Channel: YouTrackYouTrack (JT) - Bug and Issue Tracker
Viewing all 74845 articles
Browse latest View live

JT-50846: Console toolbar is not visible when console is opened

0
0
Reporter Andrey Sulyma (adsulyma) Andrey Sulyma (adsulyma)
Created Dec 14, 2018 6:27:12 PM
Updated Dec 27, 2018 6:44:49 PM
Resolved Dec 19, 2018 3:51:44 PM
State Verified
Assignee Maxim Erekhinskiy (maxim.erehinskiy)
Subsystem Workflow Editor
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions 2018.4.48293
Affected versions 2018.3.48045

When the console is closed there is no panel, when closed there is


JT-33812: Assignee Fied Name Cannot be changed back to original.

0
0
Reporter Tarık Uçar (tarikucar) Tarık Uçar (tarikucar)
Created Feb 4, 2016 3:35:57 PM
Updated Dec 29, 2018 11:32:19 AM
Resolved Dec 29, 2018 11:32:19 AM
State Obsolete
Assignee Anna Zhdan (Anna.Zhdan)
Subsystem Custom Fields
Type Bug
Priority Normal
Browser Any Browser
OS Ubuntu 11.x
Fix versions Unscheduled
Affected versions 6.5
What steps will reproduce the problem?
1. Created a new project
2. Changed "Assignee" field's name to "Risk Owner"
3. It changed it in all projects.
4. When I try to change it back to "Assignee", I get "HTTP Error"
5. When I try to change it to something like "Responsible Person", it changes but in "Assigned to me" search doesn't show anything.

What is the expected result?
I want it as original filed name "Assignee" back.
What happens instead?
It gives HTTP error. without any explanation.

Please provide any additional information below.
Attach a code sample as text, a screenshot or screencast if possible

I attached the image showing the field I want to change

JT-19122: Calendar support to add non-working days

0
0
Reporter Jim Parker (jparkerbgs) Jim Parker (jparkerbgs)
Created Mar 20, 2013 3:07:00 PM
Updated Dec 29, 2018 11:48:01 AM
Resolved Mar 25, 2013 8:33:40 PM
State Duplicate
Assignee Vadim Gurov (vgurov)
Subsystem Agile Board
Type Feature
Priority Normal
Fix versions Unscheduled
Issue http://youtrack.jetbrains.com/issue/JT-15315 states that weekends and holidays should be excluded from burndown calculations, but this really highlights a missing important feature.

The ability to add non-working days to a calendar-type page
  • Defaults to weekends as non-working
  • Users can then add national/bank holidays

This data can then be reflected in the burndown chart, any future report pages, as well as providing a REST API method for obtaining 'working days remaining' on a specific sprint.

JT-51038: How can i add in workflow user to the usergroup?

0
0
Reporter Andrey Karpov (2ni2ndfy3q2i411dj3pijwruy) Andrey Karpov (2ni2ndfy3q2i411dj3pijwruy)
Created Dec 29, 2018 12:42:46 PM
Updated Dec 29, 2018 12:42:46 PM
State Open
Assignee Anastasia Bartasheva (ana.bartasheva)
Subsystem Workflow
Type Support Request
Priority Major
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

Hello!

I have the workflow that must add user to the usergroup ('IntPerformer') after assignment to him the issue.

The script is below:
var entities = require('@jetbrains/youtrack-scripting-api/entities');

exports.rule = entities.Issue.onChange({
// TODO: give the rule a human-readable title
title: 'Include-performer-to-intperformer-group',
guard: function(ctx) {
var issue = ctx.issue;
// TODO specify the conditions for executing the rule
return !issue.becomesReported && issue.isReported && issue.fields.isChanged('Исполнитель');
},
action: function(ctx) {
var issue = ctx.issue;
var performer = issue.fields['Исполнитель']; // User.fieldType
var gName = 'IntPerformer';
// TODO: specify what to do when a change is applied to an issue

if ( ( performer !== null ) && ( performer.isInGroup(gName) === false) )
    {
      var group = entities.UserGroup.findByName(gName);
      if (group !== null ) {
           group.users.add(performer) ;
      }
    }

},
requirements: {
// TODO: add requirements
performer:
{
type: entities.User.fieldType,
name: 'Исполнитель'
}
}

The procedure return error
TypeError: Cannot find function add in object [{"$$type": " User", "login": "kgf"}, {"$$type": " User", "login": "BAE"}].

In YouTrack Help is defined, that usergroup`s property "users" is the Set.
users Set.<User> A list of users who are members of the group.

I have the similar task (to leave only one user in permitted users group) where all is working correctly without errors:
issue.permittedUsers.clear();
issue.permittedUsers.add(issue.reporter);
issue.permittedGroups.clear();

What do i make wrong?

Thank you!

JT-50554: Show dependencies on issue cards in Agile Board

0
0
Reporter Dan Lindeland Eriksen (dan.eriksen) Dan Lindeland Eriksen (dan.eriksen)
Created Nov 28, 2018 12:52:28 PM
Updated Dec 29, 2018 1:02:37 PM
State Open
Assignee Dmitry Gizatov (mitya)
Subsystem Agile Board
Type Feature
Priority Normal
Fix versions Unscheduled

Hi,

We would very much benefit from being able to see dependencies on cards at a glance in the Agile boards without opening the cards themselves.
Thank you for considering this.

//Dan Eriksen

JT-51039: Drop Files bar stacks on issues list

0
0
Reporter Arseniy Nisnevich (Arseniy.Nisnevich) Arseniy Nisnevich (Arseniy.Nisnevich)
Created Dec 29, 2018 1:16:57 PM
Updated Dec 29, 2018 1:16:57 PM
State Submitted
Assignee Unassigned
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

Before: open browser in windowed mode, half screen size

  1. Open Issues list (with several issues opened)
  2. Take some file from filesystem and quickly drag it over the browser window (via issues list), so that Drop Files bar appears

Expected: when the file goes beyond the list, Drop Files bar disappears
Actual: sometimes Drop Files bar keeps staying (look at the attachment)

JT-51040: change project to private or if not possible disable gues account

0
0
Reporter Sebastian Lauffer (Sebastian_Lauffer) Sebastian Lauffer (Sebastian_Lauffer)
Created Dec 29, 2018 2:58:34 PM
Updated Dec 29, 2018 2:58:34 PM
State Submitted
Assignee Unassigned
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown
What steps will reproduce the problem?
1. want change this project to private: https://g-intellisense.myjetbrains.com/youtrack/projects/32613995-ef6d-4d07-9431-04df43503cab
2. reading https://www.jetbrains.com/help/youtrack/standalone/Managing-Guest-Users.html
3. cant find the matching to real admin GUI and the Doc

What is the expected result?
private

What happens instead?
nothing

Please provide any additional information below.
if its not possibele in free poblic projects, please add some hints into this doku pages. thanks.

JT-51041: Team is not displayed in the team tab if there is no Assignee field in the project

0
0
Reporter Anastasia Bartasheva (ana.bartasheva) Anastasia Bartasheva (ana.bartasheva)
Created Dec 29, 2018 3:55:30 PM
Updated Dec 29, 2018 3:56:42 PM
State Open
Assignee Unassigned
Subsystem Projects
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions 2018.4.48406

STR:

  1. Have a project with Assignee field deleted
  2. Navigate to the team tab

ER: Team is displayed
AR: Team tab is empty


JT-51042: User is not shown as selected in "Visible to" after declining confirmation dialog

0
0
Reporter Ekaterina Alekseeva (Ekaterina.Alekseeva) Ekaterina Alekseeva (Ekaterina.Alekseeva)
Created Dec 29, 2018 4:32:25 PM
Updated Dec 29, 2018 4:32:25 PM
State Open
Assignee Daria Vasina (daria.vasina)
Subsystem Single Issue View
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

build 48489

STR:

  1. Log in as user with access to some restricted issue
  2. Try to remove him from "Visible to" menu
  3. Click "Cancel" in confirmation dialog
  4. Open "Visible to" dropdown again

AR:
User is not shown as selected here (while the title is "root +1", there's only root selected). Page refresh helps

JT-49970: Code blocks with no highlighting

0
0
Reporter Evgeny Naumenko (jk) Evgeny Naumenko (jk)
Created Oct 26, 2018 2:35:28 PM
Updated Dec 29, 2018 5:48:20 PM
Resolved Dec 29, 2018 5:48:20 PM
State Fixed
Assignee Evgeny Naumenko (jk)
Subsystem Markdown
Type Feature
Priority Normal
Fix versions 2018.4.next

It's be nice to support

```text
This is a text, not code
```

Code blocks with code highlighting disabled

JT-51043: Add sorting possibility for reviews in Reviews widget

0
0
Reporter Anastasia Bartasheva (ana.bartasheva) Anastasia Bartasheva (ana.bartasheva)
Created Dec 29, 2018 7:10:33 PM
Updated Dec 29, 2018 7:10:41 PM
State Open
Assignee Andrey Skladchikov (Andrey.Skladchikov)
Subsystem Dashboard & Widgets
Type Feature
Priority Normal
Fix versions Unscheduled

JT-50820: Agile Board column headers blinking - Scroll down to bottom

0
0
Reporter achecopar (achecopar) achecopar (achecopar)
Created Dec 12, 2018 10:16:34 PM
Updated Dec 29, 2018 7:59:47 PM
State Open
Assignee Anastasia Bartasheva (ana.bartasheva)
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

Today my Agile Board column headers started blinking when scrolling down to bottom. Steps: Filter the Agile Board and then scroll down to bottom. Wait and see it blinking.

It doesn't happen with other filters or when I move an issue to another column. I think it only happens when the content of the columns reach the specific height I got today. I am using Google Chrome 70.0.3538.102.

Attached some images to show it, let me know if you have more questions.

JT-51044: field "entire_doc_reversed" was indexed without position data; cannot run PhraseQuery (phrase=entire_doc_reversed:"yna si")

0
0
Reporter Exception Robot (app_exception) Exception Robot (app_exception)
Created Dec 30, 2018 7:27:12 PM
Updated Dec 30, 2018 7:27:12 PM
State Submitted
Assignee Unassigned
Subsystem No Subsystem
Type Exception
Priority Major
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions 2018.4

Original content visible to jetbrains team only for security reasons

JT-51045: Rest for "Similar issues" does not find issues

0
0
Reporter Maksim Ryzhikov (maksimrv) Maksim Ryzhikov (maksimrv)
Created Dec 30, 2018 11:53:56 PM
Updated Dec 31, 2018 12:01:38 AM
State Open
Assignee Vyacheslav Lukianov (hoegaarden)
Subsystem Issue Creation
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

https://buildserver.labs.intellij.net/viewLog.html?buildId=39926354&buildTypeId=YTDEV_WebDriver_JarKotlinSmoke

STR:

  • Run /gradlew startLocalYouTrack
  • Open /newIssue
  • Select the project "BildDesk"
  • Create 5 issues with the word "Do"
  • When creat 6th issue open "Similar Issues"

ER: 5 issues
AR: 0 issues

Test:
https://upsource.jetbrains.com/youtrack/file/8223e681403dc4c253ae81069fa76890f922bba6/charisma/youtrack-webdriver-tests/src/test/kotlin/jetbrains/youtrack/webdriver/newIssue/NewIssueTest.kt?nav=6386:7023:focused&preview=false

curl 'http://localhost:8080/api/issues/similar?$top=-1&fields=fields($type,hasStateMachine,id,id,name,projectCustomField($type,bundle(id),canBeEmpty,emptyFieldText,field(fieldType(isMultiValue,valueType),id,localizedName,name,ordinal),id,isPublic,ordinal,size),value($type,avatarUrl,buildLink,color(id),fullName,id,isResolved,localizedName,login,markdownText,minutes,name,presentation,ringId,text)),id,idReadable,project(id,ringId),reporter(id),resolved,summary,voters(hasVote),votes,watchers(hasStar)' 
-H 'Pragma: no-cache' 
-H 'Origin: http://localhost:8080' 
-H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: en-US,en;q=0.9,ru-RU;q=0.8,ru;q=0.7' 
-H 'Authorization: Bearer 1546206363790.6b6adb20-e08b-41c1-bbc9-008720a2198a.cc4391dd-33e3-49a7-bce8-90ab33ab3753.6b6adb20-e08b-41c1-bbc9-008720a2198a 0-0-0-0-0;1.MCwCFB0zI//iNwXqbPaaYGZshW4WcJPOAhQEaDMQl3WrcA8phIXV+czXzHsEDA==' 
-H 'Content-Type: application/json;charset=UTF-8' 
-H 'Accept: application/json, text/plain, */*' 
-H 'Cache-Control: no-cache' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36' -H 'Cookie: _ga=GA1.1.2109144113.1542117345; YTSESSIONID=4ok85f3hxnyhvi7eautugt43' -H 'Connection: keep-alive' -H 'Referer: http://localhost:8080/newIssue?draftId=41-4896' 
--data-binary '{"id":"41-4896"}' 
--compressed

JT-50977: Confirmation dialog appears only on editing comment

0
0
Reporter Ekaterina Alekseeva (Ekaterina.Alekseeva) Ekaterina Alekseeva (Ekaterina.Alekseeva)
Created Dec 24, 2018 2:28:50 PM
Updated Dec 31, 2018 11:45:00 AM
Resolved Dec 31, 2018 11:45:00 AM
State Fixed
Assignee Alexander Anisimov (xi-eye)
Subsystem Single Issue View
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

build 48258

STR:

  1. Start editing some work item
  2. Make any changes except editing work item comment (update author, duration, type or date)
  3. Click Cancel

AR:
Confirmation dialog doesn't appear


JT-50834: field "entire_doc_reversed" was indexed without position data; cannot run PhraseQuery (phrase=entire_doc_reversed:"em ot")

0
0
Reporter Exception Robot (app_exception) Exception Robot (app_exception)
Created Dec 13, 2018 7:17:38 PM
Updated Dec 31, 2018 1:34:11 PM
Resolved Dec 17, 2018 4:00:25 PM
State Fixed
Assignee Vyacheslav Lukianov (hoegaarden)
Subsystem Full Text Index
Type Exception
Priority Major
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions 2018.3

Original content visible to jetbrains team only for security reasons

JT-50461: Time reports: grouping by multiple fields

0
0
Reporter Alexey Volkov (Alexey.Volkov) Alexey Volkov (Alexey.Volkov)
Created Nov 23, 2018 4:51:12 PM
Updated Jan 1, 2019 1:20:48 PM
State Open
Assignee Alexey Volkov (Alexey.Volkov)
Subsystem Reports
Type Feature
Priority Normal
Fix versions Unscheduled

Introduce ability to group data by a few fields for Time and Time sheet report.

JT-51046: Calculation of issue date is wrong in YouTrack

0
0
Reporter Alexey  Vishniakov (alexey_v) Alexey Vishniakov (alexey_v)
Created Jan 1, 2019 4:31:11 PM
Updated Jan 1, 2019 10:21:30 PM
State Wait for Reply
Assignee Liubov Dievskaia (Liubov.Dievskaia)
Subsystem No Subsystem
Type Support Request
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

In my issue https://youtrack.jetbrains.com/issue/IDEA-174625
It says it was created before two years ago.
But actually date is less then half year ago.
I know. it is cosmetics =)

JT-51047: Youtrack doesn't start after migrating to external hub

0
0
Reporter TheSeventhCode (tobgias) TheSeventhCode (tobgias)
Created Jan 2, 2019 10:38:13 AM
Updated Jan 2, 2019 10:38:13 AM
State Submitted
Assignee Unassigned
Subsystem No Subsystem
Type Bug
Priority Normal
Browser Any Browser
OS Any OS
Fix versions Unscheduled
Affected versions Unknown

What steps will reproduce the problem?
1.Install Hub on Windows with reverse Proxy over IIS
2.Install Youtrack with build-in Hub
3.Migrate to external hub with the complete Domain as URL (https://hub.domain.com/hub/)
4. Try to start youtrack

Youtrack should start with the external hub as expected.
Instead it cant start anymore. Directly after the Service was started, even tried it with the .bat file, it crashes

I had a look at the logs I could get. The most useful I found was:

Cannot update services information in Hub
[2018-12-31 20:18:58,880] [YouTrack Error] com.jetbrains.bundle.util.hub.UpdaterHubServiceException: Service for 'youtrack' with id 'ee955989-faf1-452c-b754-9bae6462a94b' does not exists in External Hub (<domain>). Perhaps it was deleted manually?

The strange thing is, that youtrack is listed at the services page in the hub with exactly this Id.

I also tried to set the external hub at the installation but there the verify button wouldn't do anything but thats another problem.

JT-51048: Investigate why live update doesn't work on a customer's board

0
0
Reporter Liubov Dievskaia (Liubov.Dievskaia) Liubov Dievskaia (Liubov.Dievskaia)
Created Jan 2, 2019 10:51:10 AM
Updated Jan 2, 2019 10:51:23 AM
State Open
Assignee Unassigned
Subsystem Agile Board
Type Task
Priority Normal
Fix versions Unscheduled

Instance skblab
They're adding an issue to the board (by adding a tag to it), but the board opened in another tab is not updated, they need to refresh the page to view the card.

Issue appeared with 2018.3.47247, now it's 2018.3.48045

Viewing all 74845 articles
Browse latest View live




Latest Images