Skip to content

Commit

Permalink
WebSockets Next: fix Dev UI for nested endpoint class
Browse files Browse the repository at this point in the history
  • Loading branch information
mkouba committed Sep 27, 2024
1 parent 7668da3 commit 03a514d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class QwcWebSocketNextEndpoints extends LitElement {
}

_renderPath(endpoint) {
const inputId = endpoint.clazz.replaceAll("\.","_");
const inputId = endpoint.clazz.replaceAll("\.","_").replaceAll("\$","_");
const hasPathParam = endpoint.path.indexOf('{') != -1;
var inputPath;
var resetButton;
Expand Down

0 comments on commit 03a514d

Please sign in to comment.