- {id === undefined &&
IDの値が取得できません
}
- {baseChatData === undefined &&
データがありません
}
+ {id === undefined &&
IDの値が取得できません
}
+ {baseChatData === undefined &&
データがありません
}
{baseChatData != null && (
-
-
-
- このチャットはMarkdownに準拠しております。
- {baseChatData.map((chat, index) =>
- !chat.admin ? (
-
- ) : (
-
- )
- )}
-
-
-
-
-
+
+
+ このチャットはMarkdownに準拠しております。
+ {baseChatData.map((chat, index) =>
+ !chat.admin ? (
+
+ ) : (
+
+ )
+ )}
+
+
+
+
)}
)
diff --git a/src/pages/Support/SupportDetail/TextInput.tsx b/src/pages/Support/SupportDetail/TextInput.tsx
index 9277c8d..70e2d10 100644
--- a/src/pages/Support/SupportDetail/TextInput.tsx
+++ b/src/pages/Support/SupportDetail/TextInput.tsx
@@ -20,6 +20,14 @@ export const TextInput = (props: {
//margin="normal"
multiline
rows={5}
+
+ // TextFieldの枠線の色を変更
+ // 無理やり変更する方法しかないみたいなので、したみたいな実装になっている
+ sx={{
+ "& .MuiOutlinedInput-root": {
+ "& > fieldset": { borderColor: "black" },
+ },
+ }}
onChange={(event) => {
setInputChat(event.target.value)
}}
@@ -27,6 +35,10 @@ export const TextInput = (props: {