diff --git a/docs/en_US/release_notes_4_2.rst b/docs/en_US/release_notes_4_2.rst new file mode 100644 index 000000000..52497d95e --- /dev/null +++ b/docs/en_US/release_notes_4_2.rst @@ -0,0 +1,17 @@ +*********** +Version 4.2 +*********** + +Release date: 2019-02-07 + +This release contains a number of features and fixes reported since the release of pgAdmin4 4.1 + + +Features +******** + + +Bug fixes +********* + +| `Bug #3695 `_ - Ensure long string should be wrap in alertify dialogs. \ No newline at end of file diff --git a/web/pgadmin/static/scss/_alertify.overrides.scss b/web/pgadmin/static/scss/_alertify.overrides.scss index 38b2c9d37..8f3952b06 100644 --- a/web/pgadmin/static/scss/_alertify.overrides.scss +++ b/web/pgadmin/static/scss/_alertify.overrides.scss @@ -60,6 +60,8 @@ } .ajs-body .ajs-content { bottom: $footer-height-calc !important; + word-break: break-word; + word-wrap: break-word; } /* Removes padding from alertify footer */ @@ -231,4 +233,4 @@ .alertify .ajs-dimmer { background-color: $loading-bg; -} \ No newline at end of file +}