Fix drafts:delete API call

The request object was constructed with a query field instead of a body
field, so no data was being POSTed.

Change-Id: Ifcc930160295d746a17e247bf6222de29cb6bbe0
diff --git a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
index b4f8d8d..7b48454 100644
--- a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
+++ b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
@@ -2930,7 +2930,7 @@
       return this._send({
         method: 'POST',
         url: '/accounts/self/drafts:delete',
-        query,
+        body: {query},
       });
     },
   });