Skip to content

Commit cb2926b

Browse files
committed
Fixed indentation
1 parent ce0a7e3 commit cb2926b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

tools/server/webui/src/lib/components/app/chat/ChatForm/ChatForm.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
let recordingSupported = $state(false);
6565
let textareaRef: ChatFormTextarea | undefined = $state(undefined);
6666
let maxWidthClass = $derived(
67-
currentConfig.responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
68-
);
67+
currentConfig.responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
68+
);
6969
7070
function getAcceptStringForFileType(fileType: FileTypeCategory): string {
7171
switch (fileType) {

tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessageAssistant.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@
101101
102102
return serverModel;
103103
});
104-
104+
105105
let maxWidthClass = $derived(
106-
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
107-
);
106+
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
107+
);
108108
109109
function handleCopyModel() {
110110
const model = displayedModel();

tools/server/webui/src/lib/components/app/chat/ChatMessages/ChatMessages.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
let allConversationMessages = $state<DatabaseMessage[]>([]);
2525
2626
let maxWidthClass = $derived(
27-
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
28-
);
27+
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
28+
);
2929
3030
function refreshAllMessages() {
3131
const conversation = activeConversation();

tools/server/webui/src/lib/components/app/chat/ChatProcessingInfo.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
let processingDetails = $derived(processingState.getProcessingDetails());
1313
let showSlotsInfo = $derived(isCurrentConversationLoading || config().keepStatsVisible);
1414
let maxWidthClass = $derived(
15-
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
16-
);
15+
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
16+
);
1717
1818
// Track loading state reactively by checking if conversation ID is in loading conversations array
1919
$effect(() => {

tools/server/webui/src/lib/components/app/chat/ChatScreen/ChatScreen.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
let isCurrentConversationLoading = $derived(isLoading());
8989
9090
let maxWidthClass = $derived(
91-
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
92-
);
91+
config().responsiveChatWidth ? MAX_WIDTH_CLASSES : DEFAULT_MAX_WIDTH_CLASS
92+
);
9393
9494
async function handleDeleteConfirm() {
9595
const conversation = activeConversation();

0 commit comments

Comments
 (0)