Skip to content

Commit

Permalink
adding draft of the ressource api call
Browse files Browse the repository at this point in the history
  • Loading branch information
ooemperor committed Nov 21, 2024
1 parent e539e02 commit 0f2d413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/ProxmoxService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ProxmoxService {
}
const raw_json = await response.json();
let process_json = await raw_json['data'];
let process_json = process_json.filter(resource: any => resource.type.equal(type))
process_json = process_json.filter((resource: any) => resource.type.equal(type))
resourceResponse.nodes = await raw_json['data'];
resourceResponse.success = true;
} catch (error: any) {
Expand Down

0 comments on commit 0f2d413

Please sign in to comment.