Skip to content

Commit

Permalink
Rename text "is build" to "is built-in"
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 21, 2023
1 parent b106f31 commit 963af81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1 class="col">Groups {{group.name}} details</h1>
</div>

<div>
<mat-checkbox [checked]="group.is_builtin" disabled>Is build in</mat-checkbox>
<mat-checkbox [checked]="group.is_builtin" disabled>Is built-in</mat-checkbox>
</div>
<div mat-dialog-actions class="button-div">
<button mat-button (click)="onUpdate()" tabindex="2" mat-raised-button color="primary"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h1 class="col">Groups management</h1>


<ng-container matColumnDef="is_builtin">
<th mat-header-cell *matHeaderCellDef mat-sort-header> is build in</th>
<th mat-header-cell *matHeaderCellDef mat-sort-header> is built-in</th>
<td mat-cell *matCellDef="let element"> {{element.is_builtin}} </td>
</ng-container>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="col">Role {{($role | async)?.name}} details</h1>
<div>Last update Date: {{($role | async )?.updated_at}}</div>
<div>UUID: {{($role | async)?.role_id}}</div>
<div>
<mat-checkbox [checked]="($role | async)?.is_builtin" disabled>Is build in</mat-checkbox>
<mat-checkbox [checked]="($role | async)?.is_builtin" disabled>Is built-in</mat-checkbox>
</div>
<div mat-dialog-actions class="button-div">
<button mat-button (click)="onUpdate()" tabindex="2" mat-raised-button color="primary"
Expand Down

0 comments on commit 963af81

Please sign in to comment.