fix: worktree path validator trigger error

Signed-off-by: Gadfly <gadfly@gadfly.vip>
This commit is contained in:
Gadfly 2025-01-21 12:49:39 +08:00
parent bf1242646c
commit 2003ce0902
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ namespace SourceGit.ViewModels
public string Path
{
get => _path;
set => SetProperty(ref _path, value);
set => SetProperty(ref _path, value, true);
}
public bool CreateNewBranch