add new text to lookup action dialog (#9643)

This commit is contained in:
mcbrewster 2020-04-08 12:30:47 -06:00 committed by GitHub
parent 7bf2dfa3b1
commit 2b2b9efcd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -90,7 +90,11 @@ export class LookupValuesTable extends React.PureComponent<
accessor: 'v',
},
]}
noDataText={error ? error : 'No data found'}
noDataText={
error
? error
: 'Lookup data not found. If this is a new lookup it might not have propagated yet.'
}
/>
);
}