mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
refac
This commit is contained in:
parent
cb81dfe4ba
commit
d3ef9d980b
@ -289,7 +289,11 @@
|
||||
if (controlPane && !$mobile) {
|
||||
try {
|
||||
if (value) {
|
||||
controlPane.resize(parseInt(localStorage.getItem('chat-controls-size') || '35'));
|
||||
controlPane.resize(
|
||||
parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
: 35
|
||||
);
|
||||
} else {
|
||||
controlPane.resize(0);
|
||||
}
|
||||
|
@ -40,6 +40,7 @@
|
||||
largeScreen = true;
|
||||
} else {
|
||||
largeScreen = false;
|
||||
pane = null;
|
||||
}
|
||||
};
|
||||
|
||||
@ -121,7 +122,11 @@
|
||||
</PaneResizer>
|
||||
<Pane
|
||||
bind:pane
|
||||
defaultSize={$showControls ? parseInt(localStorage.getItem('chat-controls-size') || '35') : 0}
|
||||
defaultSize={$showControls
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
? parseInt(localStorage.getItem('chat-controls-size') || '35')
|
||||
: 35
|
||||
: 0}
|
||||
onResize={(size) => {
|
||||
if (size === 0) {
|
||||
showControls.set(false);
|
||||
|
Loading…
Reference in New Issue
Block a user