mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
refac: chat controls size
This commit is contained in:
parent
580ad46036
commit
8fc178ae91
@ -289,11 +289,11 @@
|
||||
if (controlPane && !$mobile) {
|
||||
try {
|
||||
if (value) {
|
||||
controlPane.resize(
|
||||
parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
: 35
|
||||
);
|
||||
const currentSize = controlPane.getSize();
|
||||
|
||||
if (currentSize === 0) {
|
||||
controlPane.resize(parseInt(localStorage?.chatControlsSize ?? '30'));
|
||||
}
|
||||
} else {
|
||||
controlPane.resize(0);
|
||||
}
|
||||
|
@ -123,9 +123,7 @@
|
||||
<Pane
|
||||
bind:pane
|
||||
defaultSize={$showControls
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
: 35
|
||||
? controlPane.resize(parseInt(localStorage?.chatControlsSize ?? '30'))
|
||||
: 0}
|
||||
onResize={(size) => {
|
||||
if (size === 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user