Fix command encoding. Fixes #151364 (#152896)

This commit is contained in:
Raymond Zhao
2022-06-22 14:12:32 -07:00
committed by GitHub
parent f37b4817a8
commit 5f0a3888b4

View File

@@ -11,7 +11,7 @@ function generateViewMoreElement(outputId: string) {
first.textContent = 'Output exceeds the ';
const second = document.createElement('a');
second.textContent = 'size limit';
second.href = `command:workbench.action.openSettings?["notebook.output.textLineLimit"]`;
second.href = `command:workbench.action.openSettings?%5B%22notebook.output.textLineLimit%22%5D`;
const third = document.createElement('span');
third.textContent = '. Open the full output data';
const forth = document.createElement('a');