|
|
@ -70,7 +70,10 @@ |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
|
|
|
|
|
|
|
|
<button class="query-editor-row__action" ng-click="ctrl.onRemove(analyticUnit.id)"> |
|
|
|
<button class="query-editor-row__action" |
|
|
|
|
|
|
|
ng-click="ctrl.onRemove(analyticUnit.id)" |
|
|
|
|
|
|
|
bs-tooltip="'Delete'" |
|
|
|
|
|
|
|
> |
|
|
|
<a class="pointer"> |
|
|
|
<a class="pointer"> |
|
|
|
<i class="fa fa-fw fa-trash"></i> |
|
|
|
<i class="fa fa-fw fa-trash"></i> |
|
|
|
</a> |
|
|
|
</a> |
|
|
@ -79,8 +82,9 @@ |
|
|
|
<button class="query-editor-row__action" ng-if=" |
|
|
|
<button class="query-editor-row__action" ng-if=" |
|
|
|
(analyticUnit.detectorType === 'pattern' || |
|
|
|
(analyticUnit.detectorType === 'pattern' || |
|
|
|
(analyticUnit.detectorType === 'anomaly' && analyticUnit.hasSeasonality)) && |
|
|
|
(analyticUnit.detectorType === 'anomaly' && analyticUnit.hasSeasonality)) && |
|
|
|
!analyticUnit.selected |
|
|
|
!analyticUnit.selected" |
|
|
|
"> |
|
|
|
bs-tooltip="'Save'" |
|
|
|
|
|
|
|
> |
|
|
|
<a |
|
|
|
<a |
|
|
|
class="pointer" |
|
|
|
class="pointer" |
|
|
|
ng-style="analyticUnit.status === 'LEARNING' && { 'cursor': 'not-allowed' }" |
|
|
|
ng-style="analyticUnit.status === 'LEARNING' && { 'cursor': 'not-allowed' }" |
|
|
@ -100,7 +104,10 @@ |
|
|
|
ng-disabled="analyticUnit.status === 'LEARNING'" |
|
|
|
ng-disabled="analyticUnit.status === 'LEARNING'" |
|
|
|
/> |
|
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
<button class="query-editor-row__action" ng-if="analyticUnit.selected && !analyticUnit.saving"> |
|
|
|
<button class="query-editor-row__action" |
|
|
|
|
|
|
|
ng-if="analyticUnit.selected && !analyticUnit.saving" |
|
|
|
|
|
|
|
bs-tooltip="'Learn & Detect'" |
|
|
|
|
|
|
|
> |
|
|
|
<a class="pointer" ng-click="ctrl.onCancelLabeling(analyticUnit.id)"> |
|
|
|
<a class="pointer" ng-click="ctrl.onCancelLabeling(analyticUnit.id)"> |
|
|
|
<i class="fa fa-fw fa-ban"></i> |
|
|
|
<i class="fa fa-fw fa-ban"></i> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|