File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ export default [
6868 line-height : 16px ;
6969 margin : 2px ;
7070 padding : 2px 3px ;
71- text-transform : uppercase;
7271 white-space : nowrap;
7372 }
7473
Original file line number Diff line number Diff line change @@ -326,22 +326,10 @@ export class VscodeMultiSelect
326326 private _renderLabel ( ) {
327327 switch ( this . _opts . selectedIndexes . length ) {
328328 case 0 :
329- return html `< span
330- class ="select-face-badge no-item "
331- aria-label ="Click to open the list of items "
332- > 0 selected</ span
333- > ` ;
334- case 1 :
335- return html `< span
336- class ="select-face-badge "
337- aria-label ="Click to open the list of items "
338- > 1 item selected</ span
339- > ` ;
329+ return html `< span class ="select-face-badge no-item "> 0 selected</ span > ` ;
340330 default :
341- return html `< span
342- class ="select-face-badge "
343- aria-label ="Click to open the list of items "
344- > ${ this . _opts . selectedIndexes . length } items selected</ span
331+ return html `< span class ="select-face-badge "
332+ > ${ this . _opts . selectedIndexes . length } selected</ span
345333 > ` ;
346334 }
347335 }
You can’t perform that action at this time.
0 commit comments