diff --git a/SingularityUI/app/components/requests/RequestsPage.jsx b/SingularityUI/app/components/requests/RequestsPage.jsx
index d8643ae1df..0f3f1fb0f7 100644
--- a/SingularityUI/app/components/requests/RequestsPage.jsx
+++ b/SingularityUI/app/components/requests/RequestsPage.jsx
@@ -41,6 +41,7 @@ class RequestsPage extends Component {
fetchTaskFiles: PropTypes.func,
scaleRequest: PropTypes.func,
bounceRequest: PropTypes.func,
+ isFetchingRequests: PropTypes.bool,
params: PropTypes.object,
router: PropTypes.object,
filter: PropTypes.shape({
@@ -115,7 +116,7 @@ class RequestsPage extends Component {
render() {
let displayRequests = []
- if (this.props.requestsInState.length) {
+ if (this.props.requestsInState.length || !this.props.isFetchingRequests) {
displayRequests = filterSelector({requestsInState: this.props.requestsInState, filter: this.props.filter, requestUtilizations: this.props.requestUtilizations});
} else if (this.props.requestIds.data.length) {
const options = _.map(this.props.requestIds.data, (id) => ({
@@ -130,7 +131,7 @@ class RequestsPage extends Component {
if (this.state.loading) {
table =
No requests found. You may not be part of the correct groups or teams to view the desired requests.
No requests found