Skip to content

Commit 010e154

Browse files
author
Gene Hynson
authored
fix(sub): max lengths (#4124)
1 parent 3088782 commit 010e154

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Changes to any file in this repo require approval from a member of the InfluxData ui-team
2+
3+
/src/writeData/subscriptions/ @influxdata/data-acquisition
4+
/src/types/subscriptions.ts @influxdata/data-acquisition
25
* @influxdata/ui-team

src/writeData/subscriptions/components/BrokerForm.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ const BrokerForm: FC<Props> = ({
130130
})
131131
}}
132132
status={status}
133-
maxLength={16}
134133
testID="create-broker-form--name"
135134
/>
136135
)}
@@ -213,7 +212,6 @@ const BrokerForm: FC<Props> = ({
213212
})
214213
}}
215214
status={status}
216-
maxLength={16}
217215
testID="create-broker-form--host"
218216
/>
219217
)}
@@ -243,7 +241,7 @@ const BrokerForm: FC<Props> = ({
243241
})
244242
}}
245243
status={status}
246-
maxLength={16}
244+
maxLength={5}
247245
testID="create-broker-form--port"
248246
/>
249247
)}

0 commit comments

Comments
 (0)