Skip to content

Commit

Permalink
feat(RHINENG-4796): Add Public IP & FQDN to Host Details Page (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorKGOW authored Jan 11, 2024
1 parent 187652f commit 8fd0b1e
Show file tree
Hide file tree
Showing 5 changed files with 964 additions and 9 deletions.
6 changes: 4 additions & 2 deletions src/api/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,9 @@ export const calculateSystemProfile = ({
systemProfile['host_type'] = hostTypeFilter;
}

return generateFilter({ system_profile: systemProfile });
return generateFilter({
system_profile: systemProfile,
});
};

export const filtersReducer = (acc, filter = {}) => ({
Expand Down Expand Up @@ -249,7 +251,7 @@ export async function getEntities(
),
};
} catch (e) {
console.error(e); // eslint-disable-line
console.error(e); // eslint-disable-line
}
}

Expand Down
Loading

0 comments on commit 8fd0b1e

Please sign in to comment.