-
-
Notifications
You must be signed in to change notification settings - Fork 18
Fixes #1464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #1464
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -213,6 +213,11 @@ | |||||||||||||||
| margin-bottom: 12px; | ||||||||||||||||
| } | ||||||||||||||||
|
|
||||||||||||||||
| .db-table-active-filter-chip ::ng-deep .mdc-evolution-chip__text-label { | ||||||||||||||||
| max-width: 300px; | ||||||||||||||||
| overflow: hidden; | ||||||||||||||||
|
||||||||||||||||
| overflow: hidden; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; |
Copilot
AI
Dec 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CSS rule needs white-space: nowrap; in addition to overflow: hidden to prevent text wrapping and ensure proper truncation behavior. Without this property, text may wrap to multiple lines before being clipped, which defeats the purpose of the truncation.
| overflow: hidden; | |
| overflow: hidden; | |
| white-space: nowrap; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
[required]attribute has been removed from the SSL certificate textarea, but the associated error message on line 173 still checks forsslCert.errors?.required. This error message will never be displayed now. Consider removing the<mat-error>element on line 173 to keep the template clean, or clarify if SSL certificate validation will be handled elsewhere.