We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 260554d commit cdf8200Copy full SHA for cdf8200
1 file changed
plugin/src/main/java/io/snyk/eclipse/plugin/wizards/SnykWizardConfigureAPIPage.java
@@ -41,7 +41,7 @@ public void createControl(Composite parent) {
41
composite.setLayout(gl);
42
43
Label endpointLabel = new Label(composite, SWT.NONE);
44
- endpointLabel.setText("Specify the custom endpoint for Single Tenant setups (default: https://api.snyk.io):");
+ endpointLabel.setText("Specify the Snyk API endpoint. Useful for custom Multi Tenant or Single Tenant setup (default: https://api.snyk.io):");
45
46
String endpointValue = initialEndpoint == null || initialEndpoint.isBlank() ? this.defaultEndpoint : initialEndpoint;
47
endpoint = new Text(composite, SWT.BORDER);
0 commit comments