40 lines
1.9 KiB
HTML
40 lines
1.9 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2025 The Thingsboard Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
-->
|
|
<section [formGroup]="unassignCustomerConfigForm" class="flex flex-col">
|
|
<div class="tb-form-panel no-padding no-border">
|
|
|
|
<div class="tb-form-panel stroked" [class.no-padding-bottom]="unassignCustomerConfigForm.get('unassignFromCustomer').value">
|
|
<div tb-hint-tooltip-icon="{{ 'rule-node-config.unassign-from-customer-tooltip' | translate }}"
|
|
class="tb-form-row no-border no-padding">
|
|
<mat-slide-toggle class="mat-slide" formControlName="unassignFromCustomer">
|
|
{{ 'rule-node-config.unassign-from-customer' | translate }}
|
|
</mat-slide-toggle>
|
|
</div>
|
|
<mat-form-field class="mat-block" subscriptSizing="dynamic" *ngIf="unassignCustomerConfigForm.get('unassignFromCustomer').value">
|
|
<mat-label translate>rule-node-config.customer-name-pattern</mat-label>
|
|
<input required matInput formControlName="customerNamePattern">
|
|
<mat-error *ngIf="unassignCustomerConfigForm.get('customerNamePattern').hasError('required') ||
|
|
unassignCustomerConfigForm.get('customerNamePattern').hasError('pattern')">
|
|
{{ 'rule-node-config.customer-name-pattern-required' | translate }}
|
|
</mat-error>
|
|
<mat-hint translate>rule-node-config.customer-name-pattern-hint</mat-hint>
|
|
</mat-form-field>
|
|
</div>
|
|
</div>
|
|
</section>
|