Skip to content

Commit

Permalink
Merge branch 'main' into storage-dashboard-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yashashkumar authored Nov 13, 2024
2 parents c9b4675 + 9ce1a95 commit 5c76847
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const SelectConnector = () => {
return (
<>
{isPending ? (
<Loader loading={isPending} descriptionText="Loading the page" />
<Loader loading={isPending} descriptionText="Please wait while we process your request." />
) : (
<div className={styles.selectConnector}>
<Typography variant="h1" className={styles.mainInfo} lineHeight="2.125rem">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ const Ingestion = () => {
isGenerateLoading ||
isUpdateLoading
}
descriptionText="Loading the page"
descriptionText="Please wait while we process your request."
/>

{!(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ const SchemaDetails = (props: { showTableOnly?: boolean }) => {
>
<Loader
loading={fetchDatasetById.isPending || fetchDatasetById.isFetching || uploadLoading}
descriptionText="Loading the page"
descriptionText="Please wait while we process your request."
/>

{!(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ const AllConfigurations = () => {

return (
<Box>
{(response.isPending) ? <Loader loading={response.isPending} descriptionText="Loading the page" /> :
{(response.isPending) ? <Loader loading={response.isPending} descriptionText="Please wait while we process your request." /> :
<Box>
<Accordion expanded={expanded === 'connector'} onChange={handleChange('connector')}>
<AccordionSummary aria-controls="panel1d-content" id="panel1d-header" disabled={!connectorConfig}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const Preview: FC = (): ReactElement => {
>
{
publishDataset.isPending ? (
<Loader loading={publishDataset.isPending} descriptionText="Loading the page" />
<Loader loading={publishDataset.isPending} descriptionText="Please wait while we process your request." />
) : (
publishDataset.isError ? (
<Retry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const ReviewDataset = () => {

return (
<>
{(isPending) ? <Loader loading={isPending} descriptionText="Loading the page" /> :
{(isPending) ? <Loader loading={isPending} descriptionText="Please wait while we process your request." /> :
<>
{noModifications && (
<Grid item xs={12}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ const Processing: React.FC = () => {
{
(datasetList.isPending)
?
<Loader loading={datasetList.isPending} descriptionText="Loading the page" />
<Loader loading={datasetList.isPending} descriptionText="Please wait while we process your request." />
:
<Box
className={`${styles.formContainer} ${isHelpSectionOpen ? styles.expanded : styles.collapsed}`}
Expand Down
2 changes: 1 addition & 1 deletion web-console-v2/src/pages/StepsPages/Storage/Storage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const Storage = () => {
{
(fetchPending || fetchLoading)
?
<Loader loading={fetchPending || fetchLoading} descriptionText="Loading the page" />
<Loader loading={fetchPending || fetchLoading} descriptionText="Please wait while we process your request." />
:
<Box
className={`${styles.formContainer} ${isHelpSectionOpen ? styles.expanded : styles.collapsed}`}
Expand Down

0 comments on commit 5c76847

Please sign in to comment.