Topic messages: rename "content" to "value" (#2765)

This commit is contained in:
Aditya Bhattad 2022-10-19 22:54:19 +05:30 committed by GitHub
parent 63b6bb3fa1
commit 0e4a314082
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -459,7 +459,7 @@ const Filters: React.FC<FiltersProps> = ({
/> />
</div> </div>
<div> <div>
<InputLabel>Content Serde</InputLabel> <InputLabel>Value Serde</InputLabel>
<Select <Select
id="selectValueSerdeOptions" id="selectValueSerdeOptions"
aria-labelledby="selectValueSerdeOptions" aria-labelledby="selectValueSerdeOptions"

View file

@ -27,7 +27,7 @@ const MessagesTable: React.FC = () => {
<TableHeaderCell title="Partition" /> <TableHeaderCell title="Partition" />
<TableHeaderCell title="Timestamp" /> <TableHeaderCell title="Timestamp" />
<TableHeaderCell title="Key" /> <TableHeaderCell title="Key" />
<TableHeaderCell title="Content" /> <TableHeaderCell title="Value" />
<TableHeaderCell> </TableHeaderCell> <TableHeaderCell> </TableHeaderCell>
</tr> </tr>
</thead> </thead>

View file

@ -154,7 +154,7 @@ const SendMessage: React.FC<{ onSubmit: () => void }> = ({ onSubmit }) => {
/> />
</S.Column> </S.Column>
<S.Column> <S.Column>
<InputLabel>Content Serde</InputLabel> <InputLabel>Value Serde</InputLabel>
<Controller <Controller
control={control} control={control}
name="valueSerde" name="valueSerde"
@ -190,7 +190,7 @@ const SendMessage: React.FC<{ onSubmit: () => void }> = ({ onSubmit }) => {
/> />
</S.Column> </S.Column>
<S.Column> <S.Column>
<InputLabel>Content</InputLabel> <InputLabel>Value</InputLabel>
<Controller <Controller
control={control} control={control}
name="content" name="content"