mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-21 23:41:49 -05:00
move invalid list row properties to row component
This commit is contained in:
@@ -7,7 +7,9 @@ function atRow () {
|
||||
transclude: true,
|
||||
templateUrl,
|
||||
scope: {
|
||||
templateId: '@'
|
||||
templateId: '@',
|
||||
invalid: '=',
|
||||
invalidTooltip: '='
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,2 +1,6 @@
|
||||
<div class="at-Row" id="row-{{ templateId }}" ng-transclude>
|
||||
<div class="at-Row" id="row-{{ templateId }}">
|
||||
<div class="at-Row--invalid" ng-show="invalid">
|
||||
<at-popover state="invalidTooltip"></at-popover>
|
||||
</div>
|
||||
<ng-transclude></ng-transclude>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user