Skip to content

Commit

Permalink
fix(core/amazon): wrap spinner size in quotes (#4710)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry authored Jan 23, 2018
1 parent b730fa9 commit 6838ab0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h5 class="text-center">
<span ng-if="$ctrl.chartData.noData">No data available</span>
<span ng-if="$ctrl.chartData.loading">
<loading-spinner size="small" message="loading..."></loading-spinner>
<loading-spinner size="'medium'"></loading-spinner>
</span>
</h5>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ class AtlasGraphComponent implements ng.IComponentOptions {
<div class="no-data-overlay" ng-if="$ctrl.chartData.loading || $ctrl.chartData.noData">
<h5 class="text-center">
<span ng-if="$ctrl.chartData.loading">
<loading-spinner size="'small'" message="'loading...'"></loading-spinner>
<loading-spinner size="'medium'"></loading-spinner>
</span>
</h5>
</div>
Expand Down

0 comments on commit 6838ab0

Please sign in to comment.