Starting at Line 294 on Master branch,
this.selectButton.on('click', () => {
if (this.source === 'local') {
this.localSelector.click();
} else {
this.shareSelector.appendTo('body');
this.shareBrowseTree.jstree('refresh');
this.shareSelector.removeClass('hidden');
this.shareBrowseTree.jstree({
core: {
data: {
url: 'get_share_nodes',
data: node => ({ id: node.id }),
},
},
plugins: ['checkbox', 'sort'],
});
}
});
The url: 'get_share_nodes' does not appear to be implemented in the code-base.

I've tried looking through the issue tracker and also develop branch, to see if any commits addressed this.
Thus, I believe this is a bug since the URL does not appear to be implemented.
I believe the following change is responsible: https://github.com/opencv/cvat/commit/ae6a4891e3fd874331dda661572aceb09a49fdb7#diff-5643c2e38f1fc10b1f32eaaf55dff80e
@aleksandrmelnikov , thanks for the report. We forgot to update the code.
Sure thing!
Closed through #468
Most helpful comment
@aleksandrmelnikov , thanks for the report. We forgot to update the code.