Skip to content

Commit

Permalink
Fix client_info ids prop types
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemBaskal committed Apr 1, 2021
1 parent 2980051 commit fb97e0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Logs/Cells/ClientCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ ClientCell.propTypes = {
client: propTypes.string.isRequired,
client_id: propTypes.string,
client_info: propTypes.shape({
ids: propTypes.arrayOf(propTypes.string.isRequired),
ids: propTypes.arrayOf(propTypes.string).isRequired,
name: propTypes.string.isRequired,
whois_info: propTypes.shape({
country: propTypes.string,
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Logs/Cells/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ Row.propTypes = {
client_proto: propTypes.string.isRequired,
client_id: propTypes.string,
client_info: propTypes.shape({
ids: propTypes.arrayOf(propTypes.string).isRequired,
name: propTypes.string.isRequired,
whois_info: propTypes.shape({
country: propTypes.string,
Expand Down

0 comments on commit fb97e0d

Please sign in to comment.