diff --git a/web/pgadmin/static/js/backform.pgadmin.js b/web/pgadmin/static/js/backform.pgadmin.js index d9d6981d..c12882f1 100644 --- a/web/pgadmin/static/js/backform.pgadmin.js +++ b/web/pgadmin/static/js/backform.pgadmin.js @@ -1950,7 +1950,7 @@ define([ helpMessage: null, }, template: _.template([ - '', + '', '
', ' <%=readonly ? "readonly aria-readonly=true" : ""%> <%=required ? "required" : ""%> />', ' <% if (helpMessage && helpMessage.length) { %>', diff --git a/web/pgadmin/static/scss/_pgadmin.style.scss b/web/pgadmin/static/scss/_pgadmin.style.scss index 94a11e50..6a185471 100644 --- a/web/pgadmin/static/scss/_pgadmin.style.scss +++ b/web/pgadmin/static/scss/_pgadmin.style.scss @@ -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; +}