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:
parent
a9d326c234
commit
9cc9a3bd94
@ -353,6 +353,7 @@ export const DisPlayInfo: React.FC = (): JSX.Element => {
|
|||||||
<li>
|
<li>
|
||||||
<label htmlFor="comment">
|
<label htmlFor="comment">
|
||||||
<input
|
<input
|
||||||
|
id="comment"
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
value="clm16"
|
value="clm16"
|
||||||
className={styles.formCheck}
|
className={styles.formCheck}
|
||||||
|
|||||||
@ -1116,13 +1116,7 @@ const DictationPage: React.FC = (): JSX.Element => {
|
|||||||
{(isChangeTranscriptionistPopupOpen || !isLoading) &&
|
{(isChangeTranscriptionistPopupOpen || !isLoading) &&
|
||||||
tasks.length !== 0 &&
|
tasks.length !== 0 &&
|
||||||
tasks.map((x) => (
|
tasks.map((x) => (
|
||||||
<tr
|
<tr key={x.audioFileId}>
|
||||||
key={x.audioFileId}
|
|
||||||
style={{
|
|
||||||
backgroundColor:
|
|
||||||
x.priority === "01" ? "#ff00004f" : "#ffffff",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<td className={styles.clm0}>
|
<td className={styles.clm0}>
|
||||||
<ul className={styles.menuInTable}>
|
<ul className={styles.menuInTable}>
|
||||||
<li>
|
<li>
|
||||||
@ -1231,7 +1225,12 @@ const DictationPage: React.FC = (): JSX.Element => {
|
|||||||
</td>
|
</td>
|
||||||
)}
|
)}
|
||||||
{displayColumn.Priority && (
|
{displayColumn.Priority && (
|
||||||
<td className={styles.clm3}>
|
<td
|
||||||
|
className={styles.clm3}
|
||||||
|
style={{
|
||||||
|
color: x.priority === "01" ? "red" : undefined,
|
||||||
|
}}
|
||||||
|
>
|
||||||
{x.priority === "01"
|
{x.priority === "01"
|
||||||
? PRIORITY.HIGH
|
? PRIORITY.HIGH
|
||||||
: PRIORITY.NORMAL}
|
: PRIORITY.NORMAL}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user