1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

Fix a bug: for project categories, if there is no category : do not show categories panel in show view, do not show categories input field in edit view

This commit is contained in:
Nicolas Florentin 2023-08-29 08:29:30 +02:00
parent d48fc08f07
commit ffaeb7e5c8
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog Fab-manager
## next deploy
- Fix a bug: for project categories, if there is no category : do not show categories panel in show view, do not show categories input field in edit view
## v6.0.13 2023 August 28
- Fix a bug: unable to cancel a payment schedule

View File

@ -279,7 +279,7 @@
</div>
</div>
<div class="widget panel b-a m m-t-lg">
<div class="widget panel b-a m m-t-lg" ng-if="projectCategories.length">
<div class="panel-heading b-b small">
<h3 translate>{{ projectCategoriesWording }}</h3>
</div>

View File

@ -174,7 +174,7 @@
</div>
</section>
<section class="widget panel b-a m" ng-if="project.project_categories">
<section class="widget panel b-a m" ng-if="project.project_categories.length">
<div class="panel-heading b-b">
<h3 translate>{{ projectCategoriesWording }}</h3>
</div>