Skip to content
This repository was archived by the owner on Aug 7, 2020. It is now read-only.

Commit d7f8635

Browse files
committed
fix(oui-modal): fix transclude loading by using ng-show
1 parent e965f54 commit d7f8635

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/oui-modal/src/modal.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
ng-if="$ctrl.loading">
2121
<oui-spinner></oui-spinner>
2222
</div>
23-
<div ng-if="!$ctrl.loading"
24-
ng-transclude></div>
23+
<div ng-show="!$ctrl.loading"
24+
ng-transclude>
25+
</div>
2526
</div>
2627
<div class="oui-modal__footer">
2728
<button class="oui-button oui-button_secondary"

0 commit comments

Comments
 (0)