Skip to content

Commit

Permalink
remove scroll bar from
Browse files Browse the repository at this point in the history
  • Loading branch information
jelveh committed Jun 20, 2024
1 parent c0fb470 commit a834fbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/UI/UIWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ async function UIWindow(options) {
data-disable_parent_window = "${html_encode(options.disable_parent_window)}"
data-name="${html_encode(options.title)}"
data-path ="${html_encode(options.path)}"
data-uid ="${options.uid}"
data-element_uuid="${options.element_uuid}"
data-parent_uuid="${options.parent_uuid}"
data-uid ="${html_encode(options.uid)}"
data-element_uuid="${html_encode(options.element_uuid)}"
data-parent_uuid="${html_encode(options.parent_uuid)}"
${options.parent_instance_id ? `data-parent_instance_id="${options.parent_instance_id}"` : ''}
data-id ="${win_id}"
data-iframe_msg_uid ="${options.iframe_msg_uid}"
data-iframe_msg_uid ="${html_encode(options.iframe_msg_uid)}"
data-is_dir ="${options.is_dir}"
data-return_to_parent_window = "${options.return_to_parent_window}"
data-initiating_app_uuid = "${options.initiating_app_uuid}"
data-initiating_app_uuid = "${html_encode(options.initiating_app_uuid)}"
data-is_openFileDialog ="${options.is_openFileDialog}"
data-is_saveFileDialog ="${options.is_saveFileDialog}"
data-is_directoryPicker ="${options.is_directoryPicker}"
Expand Down
2 changes: 1 addition & 1 deletion src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2079,7 +2079,7 @@ label {

.share-recipients {
max-height: 200px;
overflow: scroll;
overflow: hidden;
}

.feedback-sent-success {
Expand Down

0 comments on commit a834fbc

Please sign in to comment.