Bug fix: No matching hosts message (#3652)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
* Fix empty host message when no hosts match search criteria
|
||||
@@ -5,7 +5,11 @@ import React from "react";
|
||||
|
||||
const baseClass = "empty-hosts";
|
||||
|
||||
const EmptyHosts = (pageIndex: number): JSX.Element => {
|
||||
interface IEmptyHostsProps {
|
||||
pageIndex: number;
|
||||
}
|
||||
|
||||
const EmptyHosts = ({ pageIndex }: IEmptyHostsProps): JSX.Element => {
|
||||
return (
|
||||
<div className={`${baseClass}`}>
|
||||
<div className={`${baseClass}__inner`}>
|
||||
|
||||
Reference in New Issue
Block a user