This commit is contained in:
2025-07-11 14:00:54 +02:00
parent ee8220f059
commit fcfe19b047
3 changed files with 22 additions and 13 deletions

View File

@ -23,7 +23,6 @@ services:
ports: ports:
- "8008:80" - "8008:80"
volumes: volumes:
- ./assets:/app/assets:delegated
- ./src:/app/src:delegated - ./src:/app/src:delegated
- ./templates:/app/templates:delegated - ./templates:/app/templates:delegated
- ./config:/app/config:delegated - ./config:/app/config:delegated

View File

@ -246,6 +246,7 @@ class RedmineService
$parent = $this->issueRepository->find($issue->getRedmine()['parent']['id']); $parent = $this->issueRepository->find($issue->getRedmine()['parent']['id']);
} }
$issue->setParent($parent); $issue->setParent($parent);
$this->em->flush();
} }
} }

View File

@ -17,6 +17,11 @@
</div> </div>
</div> </div>
<div>
{% for child in issue.childs %}
{{ child.id }}
{% endfor %}
</div>
<div class="issueDescription card-body" style="height:500px;overflow-y:auto"> <div class="issueDescription card-body" style="height:500px;overflow-y:auto">
<div class="d-flex"> <div class="d-flex">
<div class="mb-3" style="flex-grow:0.5"> <div class="mb-3" style="flex-grow:0.5">
@ -71,6 +76,7 @@
</div> </div>
{% endif %} {% endif %}
{% if issue.redmine.journals is defined %}
{% for journal in issue.redmine.journals %} {% for journal in issue.redmine.journals %}
{% if journal.notes != "" %} {% if journal.notes != "" %}
<div class="card"> <div class="card">
@ -84,9 +90,12 @@
</div> </div>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
{% endif %}
<hr> <hr>
{{dump(issue)}} {{dump(issue)}}
<br><br> <br><br>
</div> </div>
</div> </div>