Skip to content

Commit

Permalink
UI動作合わせ。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Jan 28, 2024
1 parent 24bd0c3 commit a7fd1b2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
</div>
<div class="flex-item">
<ng-container *ngIf="!isEmpty && selectedTab">
<div><label><b style="font-size: smaller">タブ名: </b>
<input style="width: 200px" [(ngModel)]="tabName" placeholder="Name" [attr.disabled]="!isEditable ? '' : null" /></label>
<div><b style="font-size: smaller">タブ名: </b>
<input style="width: 200px" [(ngModel)]="tabName" placeholder="Name" [attr.disabled]="!isEditable ? '' : null" />
</div>
<div style="font-weight: bolder; font-size: smaller; padding-top: 3px">
<label>
<label [style.cursor]="isEditable ? 'pointer' : 'default'">
<input type="checkbox" [(ngModel)]="isUseStandImage" checked="{{isUseStandImage ? 'checked' : ''}}" (change)="isUseStandImage = (isUseStandImage ? true : false)" [attr.disabled]="!isEditable ? '' : null" />
<span style="text-shadow: #111 0 0 1px">💭</span>、カットイン、スタンド有効
</label>
</div>
<div style="font-weight: bolder; font-size: smaller; padding-top: 3px">
<label>
<label [style.cursor]="isEditable ? 'pointer' : 'default'">
<input type="checkbox" [(ngModel)]="recieveOperationLogLevel" checked="{{recieveOperationLogLevel > 0 ? 'checked' : ''}}" (change)="recieveOperationLogLevel = (recieveOperationLogLevel > 0 ? 1 : 0)" [attr.disabled]="!isEditable ? '' : null" />
操作ログを受信する
</label>
Expand Down

0 comments on commit a7fd1b2

Please sign in to comment.