Fix Windows clients sending the wrong path for public sharing

Fixes #73
This commit is contained in:
Bruno Bernardino
2025-06-22 11:19:02 +01:00
parent 7fac7febcf
commit cb95085ea3
4 changed files with 17 additions and 8 deletions

View File

@@ -28,12 +28,12 @@ export default function CreateShareModal(
<h1 class='text-2xl font-semibold my-5'>Create New Public Share Link</h1>
<section class='py-5 my-2 border-y border-slate-500'>
<fieldset class='block mb-2'>
<label class='text-slate-300 block pb-1' for='password'>Password</label>
<label class='text-slate-300 block pb-1' for='create-share-password'>Password</label>
<input
class='input-field'
type='password'
name='password'
id='password'
id='create-share-password'
value={newPassword.value}
onInput={(event) => {
newPassword.value = event.currentTarget.value;