mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
Fixed alignment issue under preferences for the German language. Fixes #4014
This commit is contained in:
parent
7bad4ca535
commit
8031961205
@ -22,6 +22,7 @@ Housekeeping
|
||||
Bug fixes
|
||||
*********
|
||||
|
||||
| `Issue #4014 <https://redmine.postgresql.org/issues/4014>`_ - Fixed alignment issue under preferences for the German language.
|
||||
| `Issue #4020 <https://redmine.postgresql.org/issues/4020>`_ - Fixed color issue on the statistics tab for collection node in the safari browser.
|
||||
| `Issue #4438 <https://redmine.postgresql.org/issues/4438>`_ - Fixed an issue where adding/updating records fails if the table name contains percent sign.
|
||||
| `Issue #4784 <https://redmine.postgresql.org/issues/4784>`_ - Ensure that autovacuum and analyze scale factors should be editable with more than two decimals.
|
||||
|
@ -1950,7 +1950,7 @@ define([
|
||||
helpMessage: null,
|
||||
},
|
||||
template: _.template([
|
||||
'<label for="<%=cId%>" class="<%=Backform.controlLabelClassName%>"><%=label%></label>',
|
||||
'<label for="<%=cId%>" class="<%=Backform.controlLabelClassName%> text-wrap"><%=label%></label>',
|
||||
'<div class="<%=Backform.controlsClassName%>">',
|
||||
' <input type="<%=type%>" id="<%=cId%>" class="<%=Backform.controlClassName%> <%=extraClasses.join(\' \')%>" name="<%=name%>" min="<%=min%>" max="<%=max%>"maxlength="<%=maxlength%>" value="<%-value%>" placeholder="<%-placeholder%>" <%=disabled ? "disabled" : ""%> <%=readonly ? "readonly aria-readonly=true" : ""%> <%=required ? "required" : ""%> />',
|
||||
' <% if (helpMessage && helpMessage.length) { %>',
|
||||
|
@ -1131,3 +1131,6 @@ select:-webkit-autofill:focus {
|
||||
|
||||
#myDropdown a:hover {background-color: $dropdown-link-hover-bg; color:$white !important;}
|
||||
|
||||
.text-wrap {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user