diff --git a/src/Framework/Framework/Runtime/Commands/EventValidator.cs b/src/Framework/Framework/Runtime/Commands/EventValidator.cs index d0cbfe1ba7..81320d3761 100644 --- a/src/Framework/Framework/Runtime/Commands/EventValidator.cs +++ b/src/Framework/Framework/Runtime/Commands/EventValidator.cs @@ -154,7 +154,7 @@ private FindBindingResult FindCommandBinding(string[] path, string commandId, else if (candidateBindings.All(b => !b.Key.DataContextPathMatch)) { // nothing in the specified data context path - errorMessage = $"Invalid command invocation - Nothing was found inside DataContext '{path}'. Please check if ViewModel is populated."; + errorMessage = $"Invalid command invocation - Nothing was found inside DataContext '{string.Join("/", path)}'. Please check if ViewModel is populated."; } else {