Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-%>
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
import { Component, input } from '@angular/core';

import SharedModule from 'app/shared/shared.module';
import { CacheMetrics } from 'app/admin/metrics/metrics.model';
Expand All @@ -25,7 +25,6 @@ import { filterNaN } from 'app/core/util/operators';
@Component({
selector: '<%= jhiPrefixDashed %>-metrics-cache',
templateUrl: './metrics-cache.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SharedModule],
})
export class MetricsCache {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-%>
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
import { Component, input } from '@angular/core';

import SharedModule from 'app/shared/shared.module';
import { Databases } from 'app/admin/metrics/metrics.model';
Expand All @@ -25,7 +25,6 @@ import { filterNaN } from 'app/core/util/operators';
@Component({
selector: '<%= jhiPrefixDashed %>-metrics-datasource',
templateUrl: './metrics-datasource.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SharedModule],
})
export class MetricsDatasource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-%>
import { ChangeDetectionStrategy, Component, inject, OnInit } from '@angular/core';
import { Component, inject, OnInit } from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';

import SharedModule from 'app/shared/shared.module';
Expand All @@ -25,7 +25,6 @@ import { Thread, ThreadState } from 'app/admin/metrics/metrics.model';
@Component({
selector: '<%= jhiPrefixDashed %>-thread-modal',
templateUrl: './metrics-modal-threads.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SharedModule],
})
export class MetricsModalThreads implements OnInit {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-%>
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
import { Component, input } from '@angular/core';

import SharedModule from 'app/shared/shared.module';
import { HttpServerRequests } from 'app/admin/metrics/metrics.model';
Expand All @@ -25,7 +25,6 @@ import { filterNaN } from 'app/core/util/operators';
@Component({
selector: '<%= jhiPrefixDashed %>-metrics-request',
templateUrl: './metrics-request.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SharedModule],
})
export class MetricsRequest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-%>
import { ChangeDetectionStrategy, Component, input } from '@angular/core';
import { Component, input } from '@angular/core';

import SharedModule from 'app/shared/shared.module';
import { ProcessMetrics } from 'app/admin/metrics/metrics.model';

@Component({
selector: '<%= jhiPrefixDashed %>-metrics-system',
templateUrl: './metrics-system.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [SharedModule],
})
export class MetricsSystem {
Expand Down
Loading