We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9656a60 commit 21a6480Copy full SHA for 21a6480
ui/src/components/EventConfigEventCreate/BasicInformation.vue
@@ -671,6 +671,13 @@ const showSourceCreationDialog = () => {
671
const handleSourceCreationSave = async () => {
672
try {
673
const newVendor = vendor.value ? vendor.value : configName.value.split(' ')[1]
674
+ if (newVendor.length > 128) {
675
+ snackbar.showSnackBar({
676
+ msg: 'Vendor must be less than 128 characters.',
677
+ error: true
678
+ })
679
+ return
680
+ }
681
const response = await addEventConfigSource(
682
configName.value,
683
newVendor,
0 commit comments