Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

Fix Destination Name autocomplete in Create Stream form not filtering correctly ([#12944](https://github.com/linode/manager/pull/12944))
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ export const StreamFormDelivery = () => {
)}
placeholder="Create or Select Destination Name"
renderOption={(props, option) => {
const { key, ...optionProps } = props;
const { id, ...optionProps } = props;
return (
<li key={key} {...optionProps}>
<li {...optionProps} key={id}>
Comment thread
mduda-akamai marked this conversation as resolved.
{option.create ? (
<>
<strong>Create&nbsp;</strong> &quot;{option.label}&quot;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export const StreamsLanding = () => {
{streams?.data.map((stream) => (
<StreamTableRow key={stream.id} stream={stream} {...handlers} />
))}
{streams?.results === 0 && <TableRowEmpty colSpan={6} />}
{streams?.results === 0 && <TableRowEmpty colSpan={7} />}
</TableBody>
</Table>
<PaginationFooter
Expand Down