mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-20 04:47:55 +00:00
fixed opening folder
This commit is contained in:
parent
fd17a0c731
commit
697b7ed92a
@ -287,7 +287,7 @@ async def open_code_folder(request: FolderRequest):
|
|||||||
root_folder = client.discussion.discussion_folder
|
root_folder = client.discussion.discussion_folder
|
||||||
root_folder.mkdir(parents=True, exist_ok=True)
|
root_folder.mkdir(parents=True, exist_ok=True)
|
||||||
if platform.system() == 'Windows':
|
if platform.system() == 'Windows':
|
||||||
subprocess.run(['start', '"'+str(root_folder)+'"'], check=True)
|
subprocess.Popen(f'explorer "{root_folder}"')
|
||||||
elif platform.system() == 'Linux':
|
elif platform.system() == 'Linux':
|
||||||
subprocess.run(['xdg-open', str(root_folder)], check=True)
|
subprocess.run(['xdg-open', str(root_folder)], check=True)
|
||||||
elif platform.system() == 'Darwin':
|
elif platform.system() == 'Darwin':
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
web/dist/index.html
vendored
4
web/dist/index.html
vendored
@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>LoLLMS WebUI - Welcome</title>
|
<title>LoLLMS WebUI - Welcome</title>
|
||||||
<script type="module" crossorigin src="/assets/index-83abefff.js"></script>
|
<script type="module" crossorigin src="/assets/index-3d7373fe.js"></script>
|
||||||
<link rel="stylesheet" href="/assets/index-b62d2460.css">
|
<link rel="stylesheet" href="/assets/index-b65bcbd1.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<form>
|
<form>
|
||||||
<div class="absolute bottom-0 left-0 w-fit min-w-96 w-full justify-center text-center p-4">
|
<div class="absolute bottom-0 left-0 w-fit min-w-96 w-full justify-center text-center p-4">
|
||||||
<div v-if="filesList.length > 0 || showPersonalities" class="items-center gap-2 rounded-lg border bg-primary dark:bg-bg-dark-tone p-1.5 shadow-sm hover:shadow-none dark:border-gray-800 dark:bg-gray-900 w-fit">
|
<div v-if="filesList.length > 0 || showPersonalities" class="items-center gap-2 rounded-lg border bg-light-tone dark:bg-bg-dark-tone p-1.5 shadow-sm hover:shadow-none dark:border-gray-800 dark:bg-gray-900 w-fit">
|
||||||
<!-- EXPAND / COLLAPSE BUTTON -->
|
<!-- EXPAND / COLLAPSE BUTTON -->
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<button
|
<button
|
||||||
|
Loading…
Reference in New Issue
Block a user