Skip to content

Commit a8be12f

Browse files
authored
Merge pull request #131 from lutzwillek-tomtom/customer_request_9579
Change default Dataset URL - remove tailing slash
2 parents cdca2a3 + 17d57ae commit a8be12f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/plugin/plugin_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
func TestNewDataSetDatasource(t *testing.T) {
1414
settings := backend.DataSourceInstanceSettings{
15-
JSONData: []byte(`{"scalyrUrl":"https://app.scalyr.com/"}`),
15+
JSONData: []byte(`{"scalyrUrl":"https://app.scalyr.com"}`),
1616
DecryptedSecureJSONData: map[string]string{"apiKey": "key"},
1717
}
1818
if _, err := NewDataSetDatasource(settings); err != nil {

src/ConfigEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class ConfigEditor extends PureComponent<Props, State> {
7575
labelWidth={8}
7676
inputWidth={20}
7777
onChange={this.onURLChange}
78-
value={jsonData.scalyrUrl || 'https://app.scalyr.com/'}
78+
value={jsonData.scalyrUrl || 'https://app.scalyr.com'}
7979
placeholder="Scalyr server URL"
8080
/>
8181
</div>

0 commit comments

Comments
 (0)