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:
parent
d48fc08f07
commit
ffaeb7e5c8
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user