diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts
index 81e38c2508c4..34e61df47d54 100644
--- a/client/src/api/schema/schema.ts
+++ b/client/src/api/schema/schema.ts
@@ -329,7 +329,7 @@ export interface paths {
post: operations["file_sources__test_new_instance_configuration"];
};
"/api/file_source_instances/{user_file_source_id}": {
- /** Get a list of persisted file source instances defined by the requesting user. */
+ /** Get a persisted user file source instance. */
get: operations["file_sources__instances_get"];
/** Update or upgrade user file source instance. */
put: operations["file_sources__instances_update"];
@@ -1280,7 +1280,7 @@ export interface paths {
post: operations["object_stores__test_new_instance_configuration"];
};
"/api/object_store_instances/{user_object_store_id}": {
- /** Get a persisted object store instances owned by the requesting user. */
+ /** Get a persisted user object store instance. */
get: operations["object_stores__instances_get"];
/** Update or upgrade user object store instance. */
put: operations["object_stores__instances_update"];
@@ -15189,7 +15189,7 @@ export interface operations {
};
};
file_sources__instances_get: {
- /** Get a list of persisted file source instances defined by the requesting user. */
+ /** Get a persisted user file source instance. */
parameters: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
@@ -21113,7 +21113,7 @@ export interface operations {
};
};
object_stores__instances_get: {
- /** Get a persisted object store instances owned by the requesting user. */
+ /** Get a persisted user object store instance. */
parameters: {
/** @description The user ID that will be used to effectively make this API call. Only admins and designated users can make API calls on behalf of other users. */
header?: {
diff --git a/client/src/components/ConfigTemplates/InstanceDropdown.vue b/client/src/components/ConfigTemplates/InstanceDropdown.vue
index 3314f58300e8..95bbbf863cb8 100644
--- a/client/src/components/ConfigTemplates/InstanceDropdown.vue
+++ b/client/src/components/ConfigTemplates/InstanceDropdown.vue
@@ -42,7 +42,7 @@ const emit = defineEmits<{
:href="routeUpgrade"
@keypress="router.push(routeUpgrade)"
@click.prevent="router.push(routeUpgrade)">
-
+ Upgrade