diff --git a/src/app/files/file-explorer.js b/src/app/files/file-explorer.js index 4e0ccffdc2..b317dade6d 100644 --- a/src/app/files/file-explorer.js +++ b/src/app/files/file-explorer.js @@ -319,7 +319,7 @@ fileExplorer.prototype.init = function () { fileExplorer.prototype.publishToGist = function () { modalDialogCustom.confirm( - null, + 'Create a public gist', 'Are you sure you want to publish all your files anonymously as a public gist on github.com?', () => { this.toGist() } ) diff --git a/src/app/ui/styles/modaldialog-styles.js b/src/app/ui/styles/modaldialog-styles.js index 146918e280..da028aafb9 100644 --- a/src/app/ui/styles/modaldialog-styles.js +++ b/src/app/ui/styles/modaldialog-styles.js @@ -13,6 +13,8 @@ var css = csjs` } .modalBody { word-break: break-word; + overflow-y: auto; + max-height: 600px; } .modalFooterOk { }