Skip to content

Commit

Permalink
allow extension info to be selectable in issue reporter (#232771)
Browse files Browse the repository at this point in the history
allow this to be user selectable
  • Loading branch information
justschen authored Oct 31, 2024
1 parent 7b7ed6b commit 4520d91
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/vs/workbench/contrib/issue/browser/issueReporterPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default (): string => `
${sendSystemInfoLabel}
(<a href="#" class="showInfo">${escape(localize('show', "show"))}</a>)
</label>
<div class="block-info hidden">
<div class="block-info hidden" style="user-select: text;">
<!-- To be dynamically filled -->
</div>
</div>
Expand All @@ -115,7 +115,7 @@ export default (): string => `
${sendProcessInfoLabel}
(<a href="#" class="showInfo">${escape(localize('show', "show"))}</a>)
</label>
<pre class="block-info hidden">
<pre class="block-info hidden" style="user-select: text;">
<code>
<!-- To be dynamically filled -->
</code>
Expand All @@ -127,7 +127,7 @@ export default (): string => `
${sendWorkspaceInfoLabel}
(<a href="#" class="showInfo">${escape(localize('show', "show"))}</a>)
</label>
<pre id="systemInfo" class="block-info hidden">
<pre id="systemInfo" class="block-info hidden" style="user-select: text;">
<code>
<!-- To be dynamically filled -->
</code>
Expand All @@ -139,7 +139,7 @@ export default (): string => `
${sendExtensionsLabel}
(<a href="#" class="showInfo">${escape(localize('show', "show"))}</a>)
</label>
<div id="systemInfo" class="block-info hidden">
<div id="systemInfo" class="block-info hidden" style="user-select: text;">
<!-- To be dynamically filled -->
</div>
</div>
Expand All @@ -149,7 +149,7 @@ export default (): string => `
${sendExperimentsLabel}
(<a href="#" class="showInfo">${escape(localize('show', "show"))}</a>)
</label>
<pre class="block-info hidden">
<pre class="block-info hidden" style="user-select: text;">
<!-- To be dynamically filled -->
</pre>
</div>
Expand Down

0 comments on commit 4520d91

Please sign in to comment.