Skip to content

Commit 83c6406

Browse files
committed
Abort oembed request on disconnect and adds overflow-auto back
1 parent c06ddbe commit 83c6406

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

workbench/resources/views/chat/partials/trix-input.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
name="content"
1111
toolbar="create_message_toolbar"
1212
input="create_message_input"
13-
class="trix-content rounded-0 p-0 [&_pre]:text-sm min-h-0 max-h-[90vh] border-0 sm:group-data-[composer-show-toolbar-value=true]:py-2 sm:group-data-[composer-show-toolbar-value=true]:min-h-[4em]"
13+
class="trix-content overflow-auto rounded-0 p-0 [&_pre]:text-sm min-h-0 max-h-[90vh] border-0 sm:group-data-[composer-show-toolbar-value=true]:py-2 sm:group-data-[composer-show-toolbar-value=true]:min-h-[4em]"
1414
></trix-editor>
1515

1616
<trix-toolbar js-cloak id="create_message_toolbar" class="[&_.trix-button-group]:!mb-0 sm:group-data-[composer-show-toolbar-value=true]:mt-2">

workbench/resources/views/components/app-layout.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ class UploadManager {
260260
261261
#abortController
262262
263+
disconnect() {
264+
this.#abortController?.abort()
265+
}
266+
263267
pasted(event) {
264268
const { range } = event.paste
265269

0 commit comments

Comments
 (0)