Skip to content

Commit

Permalink
PMM-12971 Add check for azure pg
Browse files Browse the repository at this point in the history
  • Loading branch information
YashSartanpara1 committed May 7, 2024
1 parent 220fa2d commit b902175
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,16 @@ export const PostgreSQLConnectionDetails: FC<MainDetailsFormPartProps> = ({ form
tooltipText={Messages.form.tooltips.postgresqlDetails.maxQueryLength}
/>
</div>
<div className={styles.group}>
<TextInputField
name="maxExporterConnections"
placeholder={Messages.form.placeholders.postgresqlDetails.maxConnectionLimit}
label={Messages.form.labels.postgresqlDetails.maxConnectionLimit}
tooltipText={Messages.form.tooltips.postgresqlDetails.maxConnectionLimit}
/>
</div>
{!remoteInstanceCredentials.isAzure && (
<div className={styles.group}>
<TextInputField
name="maxExporterConnections"
placeholder={Messages.form.placeholders.postgresqlDetails.maxConnectionLimit}
label={Messages.form.labels.postgresqlDetails.maxConnectionLimit}
tooltipText={Messages.form.tooltips.postgresqlDetails.maxConnectionLimit}
/>
</div>
)}
</div>
);
};

0 comments on commit b902175

Please sign in to comment.