Skip to content

Commit 9168bc5

Browse files
committed
fix(phraseToPlaylist): correctly set text color
1 parent e677372 commit 9168bc5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

phraseToPlaylist/phraseToPlaylist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const songMap = {
118118
onSubmit(phrase);
119119
};
120120
return (React.createElement(React.Fragment, null,
121-
React.createElement("textarea", { style: { "border-radius": "5px", "background-color": "#D3D3D3", color: "test", "font-size": "14px" }, cols: 50, rows: 4, placeholder: "Input phrase here!", value: phrase, onChange: (e) => setPhrase(e.target.value) }),
121+
React.createElement("textarea", { style: { "border-radius": "5px", "background-color": "#D3D3D3", color: "black", "font-size": "14px" }, cols: 50, rows: 4, placeholder: "Input phrase here!", value: phrase, onChange: (e) => setPhrase(e.target.value) }),
122122
React.createElement("div", { style: { display: "flex", "flex-direction": "row", "justify-content": "space-between" } },
123123
React.createElement("span", { className: "phrase-loading-indicator" }, loadingIndicator),
124124
React.createElement(ButtonPrimary, { size: "sm", onClick: handleSubmit }, "Submit Phrase"))));

phraseToPlaylist/phraseToPlaylist.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ interface PhraseToPlaylistProps {
131131
return (
132132
<>
133133
<textarea
134-
style={{ "border-radius": "5px", "background-color": "#D3D3D3", color: "test", "font-size": "14px" }}
134+
style={{ "border-radius": "5px", "background-color": "#D3D3D3", color: "black", "font-size": "14px" }}
135135
cols={50}
136136
rows={4}
137137
placeholder="Input phrase here!"

0 commit comments

Comments
 (0)