Skip to content

Commit

Permalink
hide ssl verify checkbox in api conn
Browse files Browse the repository at this point in the history
  • Loading branch information
imda-amdlahir committed Nov 3, 2023
1 parent 46dcb30 commit 16d61b0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ exports[`New Model API Config Initial Render should render with the correct defa
<div
style="margin-bottom: 5px; text-align: left;"
>
Add all data keynames that are required by the API to do the prediction.
Add all property names that will be added to request body data. Mapping of these properties to dataset columns will be done before generating report
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ function RequestBodyParameterInput(props: RequestBodyParameterInputProps) {
fontColor={ColorPalette.white}
content={
<div style={{ marginBottom: 5, textAlign: 'left' }}>
Add all data keynames that are required by the API to do the
prediction.
Add all property names that will be added to request body data.
Mapping of these properties to dataset columns will be done before
generating report
</div>
}
position={TooltipPosition.left}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,12 @@ function UrlParamCaptureInput(props: UrlParameterInputProps) {
<div style={{ marginBottom: 5, textAlign: 'left' }}>
{values.modelAPI.parameters?.paramType === URLParamType.QUERY
? `
Add the URL parameter names and corresponding data types. URL query parameters or
Add the URL parameter names and corresponding data types. Mapping of these parameters to dataset columns will
be done before generating report. URL query parameters or
query strings are the part of a URL that typically comes after a
question mark (?) and are used to pass data along with the URL.`
: `Add the URL parameter names and corresponding data types.
: `Add the URL parameter names and corresponding data types. Mapping of these parameters to dataset columns will
be done before generating report.
Path parameters are variable parts of a URL path. Order of the parameters matter.`}
</div>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ function TabContentConnection({ disabled = false }: { disabled?: boolean }) {
flexDirection: 'column',
alignItems: 'flex-start',
}}>
<div style={{ display: 'flex' }}>
{/* hiding ssl verify because it is not yet supported */}
<div style={{ display: 'flex', visibility: 'hidden', height: 0 }}>
<CheckBox
label="SSL Verify"
disabled={disabled}
Expand Down

0 comments on commit 16d61b0

Please sign in to comment.