File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ async function listTokensAction() {
219219 // show empty table if no tokens
220220 if ( tokens . length === 0 ) {
221221 const table = new Table ( {
222- head : [ gray ( "Access Tokens" ) ] ,
222+ head : [ cyan ( "Access Tokens" ) ] ,
223223 colWidths : [ 50 ] ,
224224 } ) ;
225225 table . push ( [
@@ -242,15 +242,15 @@ async function listTokensAction() {
242242 // display table
243243 const tokensTable = new Table ( {
244244 head : [
245- gray ( "Token ID" ) ,
246- gray ( "Name" ) ,
247- gray ( "Expires" ) ,
245+ cyan ( "Token ID" ) ,
246+ cyan ( "Name" ) ,
247+ cyan ( "Expires" ) ,
248248 ] ,
249249 colWidths : [ 40 , 15 , 25 ] ,
250250 } ) ;
251251 for ( const token of tokens ) {
252252 tokensTable . push ( [
253- cyan ( token . id ) ,
253+ white ( token . id ) ,
254254 token . name ? token . name : gray ( "(empty)" ) ,
255255 white ( formatDate ( new Date ( token . expires_at ) ) ) ,
256256 ] ) ;
You can’t perform that action at this time.
0 commit comments