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
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-13373-fixed-1770330669679.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@linode/manager': Fixed
---

DBaaS Autocomplete highlight for VPC, Add, and Edit Connection Pool ([#13373](https://github.com/linode/manager/pull/13373))
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export const DatabaseVPC = (props: DatabaseVPCProps) => {
name="private_network.vpc_id"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
data-testid="database-vpc-selector"
disabled={disableVPCSelectors}
errorText={vpcErrorMessage || fieldState.error?.message}
Expand Down Expand Up @@ -139,6 +140,7 @@ export const DatabaseVPC = (props: DatabaseVPCProps) => {
name="private_network.subnet_id"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
data-testid="database-subnet-selector"
disabled={disableVPCSelectors}
errorText={fieldState.error?.message}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const DatabaseAddConnectionPoolDrawer = (props: Props) => {
name="database"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Database Name"
{...field}
data-testid="database-name-select"
Expand All @@ -152,6 +153,7 @@ export const DatabaseAddConnectionPoolDrawer = (props: Props) => {
name="mode"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Pool Mode"
{...field}
data-testid="pool-mode-select"
Expand Down Expand Up @@ -196,6 +198,7 @@ export const DatabaseAddConnectionPoolDrawer = (props: Props) => {
name="username"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Username"
{...field}
data-testid="username-select"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const DatabaseEditConnectionPoolDrawer = (props: Props) => {
name="database"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Database Name"
{...field}
data-testid="database-name-select"
Expand All @@ -130,6 +131,7 @@ export const DatabaseEditConnectionPoolDrawer = (props: Props) => {
name="mode"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Pool Mode"
{...field}
data-testid="pool-mode-select"
Expand Down Expand Up @@ -172,6 +174,7 @@ export const DatabaseEditConnectionPoolDrawer = (props: Props) => {
name="username"
render={({ field, fieldState }) => (
<Autocomplete
autoHighlight
label="Username"
{...field}
data-testid="username-select"
Expand Down