@@ -104,38 +104,37 @@ export default class ApiKeysIndexController extends Controller {
104104 */
105105 @tracked columns = [
106106 {
107+ sticky : true ,
107108 label : this . intl . t ( 'developers.common.name' ) ,
108109 valuePath : 'name' ,
109110 cellComponent : 'table/cell/anchor' ,
110111 permission : 'developers view api-key' ,
111112 action : this . editApiKey ,
112113 resizable : true ,
113- width : '10%' ,
114114 sortable : false ,
115115 } ,
116116 {
117117 label : this . intl . t ( 'developers.api-keys.index.public-key' ) ,
118118 valuePath : 'key' ,
119- width : '18%' ,
120119 sortable : false ,
121120 resizable : true ,
122121 cellComponent : 'click-to-copy' ,
123122 } ,
124123 {
125124 label : this . intl . t ( 'developers.api-keys.index.secret-key' ) ,
126125 valuePath : 'secret' ,
127- width : '18%' ,
128126 sortable : false ,
129127 resizable : true ,
128+ width : 100 ,
130129 cellComponent : 'click-to-reveal' ,
131130 cellComponentArgs : {
132131 clickToCopy : true ,
132+ wrapperClass : 'w-72'
133133 } ,
134134 } ,
135135 {
136136 label : this . intl . t ( 'developers.api-keys.index.enviroment' ) ,
137137 valuePath : 'environment' ,
138- width : '10%' ,
139138 sortable : false ,
140139 resizable : true ,
141140 cellComponent : 'table/cell/status' ,
@@ -144,7 +143,6 @@ export default class ApiKeysIndexController extends Controller {
144143 label : this . intl . t ( 'developers.api-keys.index.expiry' ) ,
145144 valuePath : 'expiresAt' ,
146145 sortable : false ,
147- width : '8%' ,
148146 tooltip : true ,
149147 resizable : true ,
150148 cellClassNames : 'overflow-visible' ,
@@ -153,7 +151,6 @@ export default class ApiKeysIndexController extends Controller {
153151 label : this . intl . t ( 'developers.api-keys.index.last-used' ) ,
154152 valuePath : 'lastUsed' ,
155153 sortable : false ,
156- width : '14%' ,
157154 tooltip : true ,
158155 resizable : true ,
159156 cellClassNames : 'overflow-visible' ,
@@ -162,7 +159,6 @@ export default class ApiKeysIndexController extends Controller {
162159 label : this . intl . t ( 'developers.common.created' ) ,
163160 valuePath : 'createdAt' ,
164161 sortable : false ,
165- width : '14%' ,
166162 tooltip : true ,
167163 resizable : true ,
168164 cellClassNames : 'overflow-visible' ,
@@ -176,8 +172,9 @@ export default class ApiKeysIndexController extends Controller {
176172 ddMenuLabel : 'API Key Actions' ,
177173 cellClassNames : 'overflow-visible' ,
178174 wrapperClass : 'flex items-center justify-end mx-2' ,
179- width : '10%' ,
180175 align : 'right' ,
176+ sticky : 'right' ,
177+ width : 60 ,
181178 actions : [
182179 {
183180 label : this . intl . t ( 'developers.api-keys.index.edit-key' ) ,
0 commit comments