Skip to content

Commit

Permalink
Fix #96802
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed May 4, 2020
1 parent 846aec8 commit 6d70b4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ export class ExtensionEditor extends BaseEditor {
template.builtin.style.display = extension.type === ExtensionType.System ? 'inherit' : 'none';

template.publisher.textContent = extension.publisherDisplayName;
template.version.textContent = extension.version;
template.version.textContent = `v${extension.version}`;
template.description.textContent = extension.description;

const extRecommendations = this.extensionRecommendationsService.getAllRecommendationsWithReason();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,6 @@
padding-left: 14px;
}

.extension-editor > .header > .details > .subtitle .version {
font-size: 90%;
font-style: italic;
}

.extension-editor > .header > .details > .description {
margin-top: 10px;
white-space: nowrap;
Expand Down

0 comments on commit 6d70b4f

Please sign in to comment.