Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sub-issue #39

Open
scenaristeur opened this issue Jul 2, 2021 · 3 comments
Open

sub-issue #39

scenaristeur opened this issue Jul 2, 2021 · 3 comments
Labels
enhancement New feature or request

Comments

@scenaristeur
Copy link

What is the correct way to use sub-issue ?
Nothing appears in the UI even if i've checked the "use sub-issue" option,

image

so I've manually tried flow:dependant :Iss1625242740456; on https://spoggy-test13.solidcommunity.net/public/issuetracker/new%20tracker/state.ttl

but nothing more in the ui
image

@josephguillaume
Copy link
Contributor

Displaying the hierarchy of nested subtasks is not yet implemented: #15

@timbl
Copy link
Contributor

timbl commented Feb 24, 2022

The subissue panel was never added to the DOM ..

@josephguillaume
Copy link
Contributor

josephguillaume commented Jan 8, 2023

I had another debug: It turns out that "Allow issues to have sub-issues" in settings sets wf:allowSubIssues

:property wf:allowSubIssues;

However, the code to display the subpanel checks for ui:allowSubIssues

if (getOption(tracker, 'allowSubIssues')) {

issue-pane/issue.js

Lines 165 to 169 in 7424281

function getOption (tracker, option) {
// eg 'allowSubIssues'
const opt = kb.any(tracker, ns.ui(option))
return !!(opt && opt.value)
}

Currently, the sub-issue functionality can therefore be manually set by adding tracker ui:allowSubIssues 1.

Dependencies are expressed using wf:dependent

Edit: and the subissue panel is now added to the dom in 6559425

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

No branches or pull requests

4 participants