Skip to content

Commit

Permalink
Add missing fallback texts
Browse files Browse the repository at this point in the history
  • Loading branch information
BatJan authored and nathanwoulfe committed Oct 27, 2021
1 parent 35b0dda commit e8970c0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

<umb-empty-state ng-if="!items && options.filter.length > 0"
position="center">
<localize key="general_searchNoResult"></localize>
<localize key="general_searchNoResult">Sorry, we can not find what you are looking for.</localize>
</umb-empty-state>

<umb-empty-state ng-if="!items && options.filter.length == 0 && vm.isRecycleBin"
position="center">
<localize key="general_recycleBinEmpty"></localize>
<localize key="general_recycleBinEmpty">Your recycle bin is empty</localize>
</umb-empty-state>

</div>
Expand Down Expand Up @@ -69,12 +69,12 @@

<umb-empty-state ng-if="vm.itemsWithoutFolders.length === 0 && folders.length === 0 && options.filter.length == 0 && vm.isRecycleBin"
position="center">
<localize key="general_recycleBinEmpty"></localize>
<localize key="general_recycleBinEmpty">Your recycle bin is empty</localize>
</umb-empty-state>

<umb-empty-state ng-if="vm.itemsWithoutFolders.length === 0 && folders.length === 0 && options.filter.length > 0"
position="center">
<localize key="general_searchNoResult"></localize>
<localize key="general_searchNoResult">Sorry, we can not find what you are looking for.</localize>
</umb-empty-state>

</div>
Expand Down

0 comments on commit e8970c0

Please sign in to comment.