Remove 'Try backup or restore task' from task message (#5340)

This commit is contained in:
Karl Burtram
2019-05-02 18:52:11 -07:00
committed by GitHub
parent 56ad0dbaf2
commit c7f5278430

View File

@@ -53,7 +53,7 @@ export class TaskHistoryView {
if (taskNode && taskNode.hasChildren) {
hide(this._messages);
}
let noTaskMessage = localize('noTaskMessage', 'No task history to display. Try backup or restore task to view its execution status.');
let noTaskMessage = localize('noTaskMessage', 'No task history to display.');
append(this._messages, $('span')).innerText = noTaskMessage;
this._tree = this.createTaskHistoryTree(container, this._instantiationService);