You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kafka-webview-ui/src/main/java/org/sourcelab/kafka/webview/ui/controller/configuration/filter/FilterConfigController.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,7 @@ public String update(
157
157
bindingResult.addError(newFieldError(
158
158
"filterForm", "file", "", true, null, null, "Select a jar to upload")
159
159
);
160
-
return"/configuration/filter/create";
160
+
return"configuration/filter/create";
161
161
}
162
162
163
163
// If filter exists
@@ -191,7 +191,7 @@ public String update(
191
191
null,
192
192
"Filter must have unique name")
193
193
);
194
-
return"/configuration/filter/create";
194
+
return"configuration/filter/create";
195
195
}
196
196
}
197
197
@@ -205,7 +205,7 @@ public String update(
205
205
bindingResult.addError(newFieldError(
206
206
"filterForm", "file", "", true, null, null, "File must have a .jar extension")
Copy file name to clipboardExpand all lines: kafka-webview-ui/src/main/java/org/sourcelab/kafka/webview/ui/controller/configuration/messageformat/MessageFormatController.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -188,7 +188,7 @@ public String create(
188
188
bindingResult.addError(newFieldError(
189
189
"messageFormatForm", "file", "", true, null, null, "Select a jar to upload")
0 commit comments