Skip to content

Commit

Permalink
Fixes #36122 - Hide unsyncable content type warning (#10456)
Browse files Browse the repository at this point in the history
until the information is actually loaded

(cherry picked from commit 35fcf95)
  • Loading branch information
adamruzicka authored and lfu committed Mar 29, 2023
1 parent fe0334c commit 25b4098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/foreman/smart_proxies/_content_sync.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</div>

<br>
<div ng-hide="syncStatus.unsyncable_content_types.length == 0">
<div ng-hide="syncStatus === undefined || syncStatus.unsyncable_content_types.length == 0">
<span translate>
Pulp plugin missing for synchronizable content types: <b>{{ syncStatus.unsyncable_content_types.join(", ") }}.</b><br />
Repositories containing these content types will not be synced.
Expand Down

0 comments on commit 25b4098

Please sign in to comment.