This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 8f7201a75f [MINOR] web(UI): alphabetical order for catalog providers
(#8522)
8f7201a75f is described below
commit 8f7201a75f17c444d4d50aaa351577d602800090
Author: Qian Xia <[email protected]>
AuthorDate: Thu Sep 11 15:39:20 2025 +0800
[MINOR] web(UI): alphabetical order for catalog providers (#8522)
### What changes were proposed in this pull request?
alphabetical order for catalog providers
### Why are the changes needed?
N/A
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
N/A
---
web/web/src/lib/utils/initial.js | 56 ++++++++++++++++++++--------------------
1 file changed, 28 insertions(+), 28 deletions(-)
diff --git a/web/web/src/lib/utils/initial.js b/web/web/src/lib/utils/initial.js
index e2da9dbe68..9c09caccf2 100644
--- a/web/web/src/lib/utils/initial.js
+++ b/web/web/src/lib/utils/initial.js
@@ -48,34 +48,6 @@ export const messagingProviders = [
]
export const providers = [
- {
- label: 'StarRocks',
- value: 'jdbc-starrocks',
- defaultProps: [
- {
- key: 'jdbc-driver',
- value: '',
- required: true,
- description: 'e.g. com.mysql.jdbc.Driver'
- },
- {
- key: 'jdbc-url',
- value: '',
- required: true,
- description: 'e.g. jdbc:mysql://localhost:9030'
- },
- {
- key: 'jdbc-user',
- value: '',
- required: true
- },
- {
- key: 'jdbc-password',
- value: '',
- required: true
- }
- ]
- },
{
label: 'Apache Doris',
value: 'jdbc-doris',
@@ -371,6 +343,34 @@ export const providers = [
required: true
}
]
+ },
+ {
+ label: 'StarRocks',
+ value: 'jdbc-starrocks',
+ defaultProps: [
+ {
+ key: 'jdbc-driver',
+ value: '',
+ required: true,
+ description: 'e.g. com.mysql.jdbc.Driver'
+ },
+ {
+ key: 'jdbc-url',
+ value: '',
+ required: true,
+ description: 'e.g. jdbc:mysql://localhost:9030'
+ },
+ {
+ key: 'jdbc-user',
+ value: '',
+ required: true
+ },
+ {
+ key: 'jdbc-password',
+ value: '',
+ required: true
+ }
+ ]
}
]