mirror of
https://github.com/hangeol-chang/obsidian-csv-allinone.git
synced 2026-07-22 05:37:25 +00:00
[HOTFIX] 경로 관련 오류 수정
This commit is contained in:
parent
80b048fb2b
commit
3d4d62d2e5
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ export default class CsvCreateModal extends Modal {
|
|||
const filePathInput = contentEl.querySelector('.filepath-input') as HTMLInputElement;
|
||||
|
||||
let filename = filenameInput.value.trim();
|
||||
let filePath = filePathInput.value.trim() || '/';
|
||||
let filePath = filePathInput.value.trim() || '';
|
||||
|
||||
// validation
|
||||
if (!filename) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue