Skip to content

Commit

Permalink
add padding to align text
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome committed Oct 31, 2024
1 parent 4d19c4c commit 4903caa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ export class OpenApiTreeNode extends vscode.TreeItem {
super(label, collapsibleState);
this.id = `${path}_${filterTokens.join('_')}`; // so the collapsed state is NOT persisted between filter changes
this.contextValue = label === pathSeparator + " (" + apiTitle + ")" ? 'apiTitle' : (this.documentationUrl ? 'documentationUrl' : '');
this.iconPath = selected ? OpenApiTreeNode.selectedSet : undefined;
this.iconPath = selected ? OpenApiTreeNode.selectedSet : ' ';
if (clientNameOrPluginName) {
this.label = clientNameOrPluginName;
this.contextValue = 'clientNameOrPluginName';
Expand Down

0 comments on commit 4903caa

Please sign in to comment.