1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 13:25:26 +02:00

fix(errors): surface react docker errors to front end [EE-7053] (#11726)

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2024-05-13 15:34:00 +12:00 committed by GitHub
parent 55667a878a
commit 6b5a402962
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 107 additions and 142 deletions

View file

@ -1,17 +0,0 @@
import { RawAxiosRequestHeaders } from 'axios';
const AgentTargetHeader = 'X-PortainerAgent-Target';
export function addNodeName(
nodeName?: string,
headers: RawAxiosRequestHeaders = {}
) {
if (!nodeName) {
return headers;
}
return {
...headers,
[AgentTargetHeader]: nodeName,
};
}