Skip to content

Commit

Permalink
PER-8562
Browse files Browse the repository at this point in the history
Removed the icons
  • Loading branch information
crisnicandrei committed Feb 14, 2024
1 parent 0b48c15 commit 9703c7d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@
(currentRecord.LocnVO | prLocation)?.full
}}</span>
<span class="add-location" *ngIf="!currentRecord.LocnVO && canEdit">
<fa-icon [icon]="['fas', 'pen-square']"></fa-icon>
Click to add location</span
>
<span *ngIf="!currentRecord.LocnVO && !canEdit">No location</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@
*ngIf="!selectedItem.LocnVO && canEdit"
class="sidebar-item-content-empty"
>
<fa-icon [icon]="['fas', 'pen-square']"></fa-icon>
Click to set location
</span>
</div>
Expand Down
8 changes: 0 additions & 8 deletions src/app/shared/components/tags/tags.component.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
<!-- @format -->
<div class="not-empty" *ngIf="tags?.length && !isEditing && canEdit">
<fa-icon
*ngIf="isEditableFullscreen"
[icon]="['fas', 'pen-square']"
></fa-icon>
Click to add
</div>
<div class="tags">
<div class="empty" *ngIf="!tags?.length">
<fa-icon
*ngIf="canEdit && !isEditing"
[icon]="['fas', 'pen-square']"
></fa-icon>
{{ canEdit && !isEditing ? 'Click to add' : 'No tags' }}
</div>
<ng-container *ngIf="tags?.length">
Expand Down

0 comments on commit 9703c7d

Please sign in to comment.