fixed a bug in merge labels

This commit is contained in:
Michele Artini 2022-01-25 09:02:52 +01:00
parent 52a53e6484
commit 3a3f24135d
1 changed files with 4 additions and 4 deletions

View File

@ -256,10 +256,10 @@
<td class="pl-3" colspan="3">This organizazion
<!-- NB: The showed value MUST be the inverse -->
<span ng-switch="r.type">
<b ng-switch-when="Child">is parent of</b>
<b ng-switch-when="Parent">is child of</b>
<b ng-switch-when="Merges">is merged in</b>
<b ng-switch-when="Merged_In">merges</b>
<b ng-switch-when="Child">is parent of</b> <!-- I reverse to have a better label, but it should be has child -->
<b ng-switch-when="Parent">is child of</b> <!-- I reverse to have a better label, but it should be has parent -->
<b ng-switch-when="Merges">merges</b>
<b ng-switch-when="Merged_In">is merged in</b>
<b ng-switch-default>is related to</b>
</span>
<a href="#!/edit/0/{{r.relatedOrgId}}" title="{{r.relatedOrgId}}">{{r.relatedOrgName}}</a>