event-engine / cockpit

Administration frontend for Event Engine powered backends

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Axios bump broke submitting payload

zluiten opened this issue · comments

Since #44 json payload in the request body is submitted wrapped with double quotes.

Example:

Current:

"{\n  \"key1\": \"value1\",\n  \"key2\": \"value2\"\n}"

Previous:

{
  "key1": "value1",
  "key2": "value2"
}