change unknown to question mark

This commit is contained in:
sawka 2023-02-28 17:51:17 -08:00
parent 759a0b52c7
commit c3d07223f7

View File

@ -117,7 +117,7 @@ function getCwdStr(remote : RemoteType, state : FeStateType) : string {
if ((state == null || state.cwd == null) && remote != null) {
return "~";
}
let cwd = "(unknown)";
let cwd = "?";
if (state && state.cwd) {
cwd = state.cwd;
}