Skip to content

Commit

Permalink
add status message to history item (#1364)
Browse files Browse the repository at this point in the history
  • Loading branch information
Onokaev authored Jan 24, 2022
1 parent 6875104 commit 69c23e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/actions/query-action-creators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ async function createHistory(
duration: number
) {
const status = response.status;
const statusText = response.statusText;
const statusText = response.statusText === '' ? setStatusMessage(status) : response.statusText;
const responseHeaders = { ...respHeaders };
const contentType = respHeaders['content-type'];

Expand Down

0 comments on commit 69c23e7

Please sign in to comment.