Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ export class ConnectDBComponent implements OnInit {
if (this.db.host.endsWith('.azure.com')) provider = 'azure';
if (this.db.host.endsWith('.mongodb.net')) provider = 'mongoatlas';
if (this.db.host.endsWith('.ondigitalocean.com')) provider = 'digitalocean';
if (this.db.host.endsWith('.scylla.cloud')) provider = 'scylladbcloud';
if(isIP(this.db.host)) {
const hostIP = ipaddr.parse(this.db.host);
for (const addr of googlIPsList) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class DbConnectionConfirmDialogComponent implements OnInit {
google: 'Google Cloud Platform',
mongoatlas: 'MongoDB Atlas',
digitalocean: 'DigitalOcean',

scylladbcloud: 'ScyllaDB Cloud',
amazonDynamoDB: 'Amazon DynamoDB',
};
public providerDocsLink = {
Expand All @@ -36,7 +36,7 @@ export class DbConnectionConfirmDialogComponent implements OnInit {
google: 'https://docs.rocketadmin.com/Create%20connections/Direct%20connection/create_google_cloud',
mongoatlas: 'https://docs.rocketadmin.com/Create%20connections/Direct%20connection/create_mongo_atlas',
digitalocean: 'https://docs.rocketadmin.com/Create%20connections/Direct%20connection/create_digitalocean_postgresql',

scylladbcloud: 'https://docs.rocketadmin.com/Create%20connections/Direct%20connection/create_scylladb',
amazonDynamoDB: 'https://docs.rocketadmin.com/Create%20connections/Direct%20connection/create_aws_dynamodb',
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
align-items: stretch;
grid-gap: 20px;
margin-top: 24px;
width: 77%;
Expand All @@ -65,6 +66,7 @@
font-weight: 600;
padding: 12px;
text-decoration: none;
height: 100%;
transition: box-shadow 200ms, background 200ms, border 200ms;
}

Expand Down Expand Up @@ -108,6 +110,10 @@
width: 30px;
}

.addConnectionLink__label {
text-align: center;
}

.showAllButton {
margin-top: 20px;
margin-bottom: -56px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 *ngIf="(currentUser?.role === 'ADMIN' || currentUser?.role === 'DB_ADMIN') &
<div class="addConnectionLink__iconBox">
<mat-icon [svgIcon]="supportedDatabase" class="addConnectionLink__icon"></mat-icon>
</div>
{{ supportedDatabasesTitles[supportedDatabase] }}
<span class="addConnectionLink__label">{{ supportedDatabasesTitles[supportedDatabase] }}</span>
</a>
</li>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/app/consts/databases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ export const supportedOrderedDatabases = [
]

export const supportedDatabasesTitles = {
mysql: "MySQL",
mysql: "MySQL (MariaDB)",

Copilot AI Jan 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra whitespace before the opening parenthesis. Should have only one space between 'MySQL' and '(MariaDB)' for consistency with other entries.

Copilot uses AI. Check for mistakes.
postgres: "PostgreSQL",
mongodb: "MongoDB",
dynamodb: "DynamoDB",
cassandra: "Cassandra",
cassandra: "Cassandra (ScyllaDB)",
oracledb: "OracleDB",
mssql: "SQL Server",
redis: "Redis",
elasticsearch: "Elasticsearch",
elasticsearch: "Elasticsearch (OpenSearch)",
clickhouse: "ClickHouse",
ibmdb2: "IBM DB2"
}
Loading