@alauda-fe/dynamic-plugin-shared 0.0.4-alpha.22 → 0.0.4-alpha.23
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/assets/i18n/en.json
CHANGED
|
@@ -13,5 +13,11 @@
|
|
|
13
13
|
"execute_failed": "Execution Failed",
|
|
14
14
|
"execute_succeeded": "Executed",
|
|
15
15
|
"executing": "Executing",
|
|
16
|
+
"update_annotations": "Update Annotations",
|
|
17
|
+
"update_labels": "Update Label",
|
|
18
|
+
"update_annotations_succeeded": "Updated",
|
|
19
|
+
"update_annotations_failed": "Update failed",
|
|
20
|
+
"update_labels_succeeded": "Updated",
|
|
21
|
+
"update_labels_failed": "Update failed",
|
|
16
22
|
"": ""
|
|
17
23
|
}
|
|
@@ -11183,7 +11183,9 @@ class PluginClusterSelectorComponent {
|
|
|
11183
11183
|
.get(`${API_GATEWAY$1}/auth/v1/clusters`)
|
|
11184
11184
|
.pipe(map(list => list.items), catchError(() => of([])))
|
|
11185
11185
|
.subscribe(clusters => {
|
|
11186
|
-
this.
|
|
11186
|
+
if (!this.value) {
|
|
11187
|
+
this.onSelect({ name: clusters[0].metadata.name });
|
|
11188
|
+
}
|
|
11187
11189
|
});
|
|
11188
11190
|
}
|
|
11189
11191
|
openPopup() {
|