Commit 2fe56788 authored by Mo Firouz's avatar Mo Firouz
Browse files

Fix issue calling correct api call.

parent 1622078d
Loading
Loading
Loading
Loading
+2 −2

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ export class ApiExplorerComponent implements OnInit, AfterViewInit {
  isRpcEndpoint(method: string): boolean {
    return this.rpcEndpoints.find((e) => {
      return e.method === method ? e : null;
    }) !== null;
    }) != null;
  }

  setupRequestBody(body) {