@kumologica/sdk 3.2.0-beta19 → 3.2.0-beta20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/.DS_Store +0 -0
- package/fixtures/.DS_Store +0 -0
- package/package.json +4 -4
- package/src/app/lib/aws/index.js +21 -1
- package/src/app/ui/editor-client/public/red/red.js +2 -2
- package/src/app/ui/editor-client/public/red/red.min.js +1 -1
- package/src/app/ui/editor-client/src/js/ui/tab-awsDeploy.js +2 -2
|
@@ -580,7 +580,7 @@ RED.sidebar.awsDeploy = (function () {
|
|
|
580
580
|
|
|
581
581
|
if (serviceType == 'api') {
|
|
582
582
|
$(`#${dataListId}`).append(
|
|
583
|
-
$('<option>').attr('value', '
|
|
583
|
+
$('<option>').attr('value', 'create new').text('Create new API')
|
|
584
584
|
);
|
|
585
585
|
}
|
|
586
586
|
|
|
@@ -611,7 +611,7 @@ RED.sidebar.awsDeploy = (function () {
|
|
|
611
611
|
|
|
612
612
|
if (serviceType == 'api') {
|
|
613
613
|
$(`#${dataListId}`).append(
|
|
614
|
-
$('<option>').attr('value', '
|
|
614
|
+
$('<option>').attr('value', 'create new').text('Create new API')
|
|
615
615
|
);
|
|
616
616
|
}
|
|
617
617
|
|