tweak: small fix
This commit is contained in:
parent
7435d94f85
commit
7d82f1769c
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ import { Global } from "@/global"
|
|||
export function useDirectory() {
|
||||
const sync = useSync()
|
||||
return createMemo(() => {
|
||||
const directory = sync.data.path.directory ?? process.cwd()
|
||||
const directory = sync.data.path.directory || process.cwd()
|
||||
const result = directory.replace(Global.Path.home, "~")
|
||||
if (sync.data.vcs?.branch) return result + ":" + sync.data.vcs.branch
|
||||
return result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue