Merged PR 744: タスク一覧画面修正

## 概要
[Task3672: タスク一覧画面修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3672)

- タスク一覧の表示項目制御用のチェックボックスの操作可能範囲を修正
  - 「Comment」のチェックボックスをリテラルまで押せるようにした
- タスク一覧のPriorityがHighの時の表示を変更した
  - 行を赤く表示→文字を赤く表示

## レビューポイント
- 修正する箇所の認識は合っているか

## UIの変更
-https://ndstokyo.sharepoint.com/:f:/r/sites/Piranha/Shared%20Documents/General/OMDS/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88/Task3672?csf=1&web=1&e=nSX5B0

## 動作確認状況
- ローカルで確認

## 補足
- 相談、参考資料などがあれば
This commit is contained in:
saito.k 2024-02-13 02:12:00 +00:00
parent a9d326c234
commit 9cc9a3bd94
2 changed files with 8 additions and 8 deletions

View File

@ -353,6 +353,7 @@ export const DisPlayInfo: React.FC = (): JSX.Element => {
<li>
<label htmlFor="comment">
<input
id="comment"
type="checkbox"
value="clm16"
className={styles.formCheck}

View File

@ -1116,13 +1116,7 @@ const DictationPage: React.FC = (): JSX.Element => {
{(isChangeTranscriptionistPopupOpen || !isLoading) &&
tasks.length !== 0 &&
tasks.map((x) => (
<tr
key={x.audioFileId}
style={{
backgroundColor:
x.priority === "01" ? "#ff00004f" : "#ffffff",
}}
>
<tr key={x.audioFileId}>
<td className={styles.clm0}>
<ul className={styles.menuInTable}>
<li>
@ -1231,7 +1225,12 @@ const DictationPage: React.FC = (): JSX.Element => {
</td>
)}
{displayColumn.Priority && (
<td className={styles.clm3}>
<td
className={styles.clm3}
style={{
color: x.priority === "01" ? "red" : undefined,
}}
>
{x.priority === "01"
? PRIORITY.HIGH
: PRIORITY.NORMAL}