File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ export function activate(context: vscode.ExtensionContext) {
52
52
const item = new vscode . CompletionItem ( `antd-${ key } : ${ value } ` , 11 ) ;
53
53
item . insertText = key . includes ( "-" ) ? `['${ key } ']` : key ;
54
54
55
- const sortValue = value . padStart ( 3 , "0" ) ;
55
+ const sortValue = value . padStart ( 5 , "0" ) ;
56
56
item . sortText = `a-${ sortValue } -${ key } ` ;
57
57
58
58
const colorSpan = genMarkdownString ( value ) ;
59
59
let documentContent : vscode . MarkdownString | string = "" ;
60
60
61
61
documentContent = new vscode . MarkdownString (
62
- `<h3 >antd design token: ${ key } </h3 >${ colorSpan } <code>${ value } </code><br></br>`
62
+ `<h4 >antd design token: ${ key } </h4 >${ colorSpan } <code>${ value } </code><br></br>`
63
63
) ;
64
64
documentContent . supportHtml = true ;
65
65
You can’t perform that action at this time.
0 commit comments