@@ -483,15 +483,16 @@ private CollapsibleLayout buildScopesSection()
483
483
s -> s != null && s .getName () != null && systemScopesNames .contains (s .getName ()), false );
484
484
Column <OAuthScopeBean , Component > addGotoEditColumn = scopesGrid
485
485
.addGotoEditColumn (s -> s .getName (), msg .getMessage ("OAuthEditorGeneralTab.scopeName" ), 10 )
486
- .setWidth ( 220 );
486
+ .setMinimumWidth ( 200 );
487
487
addGotoEditColumn .setResizable (true );
488
488
addGotoEditColumn .setId ("name" );
489
489
scopesGrid .addCheckboxColumn (s -> s .isEnabled (), msg .getMessage ("OAuthEditorGeneralTab.scopeEnabled" ), 10 )
490
- .setResizable (true ).setWidth (60 );
491
- scopesGrid .addTextColumn (s -> s .getDescription (), msg .getMessage ("OAuthEditorGeneralTab.scopeDescription" ), 30 )
490
+ .setResizable (true ).setSortable (false )
491
+ .setMinimumWidth (70 );
492
+ scopesGrid .addTextColumn (s -> s .getDescription (), msg .getMessage ("OAuthEditorGeneralTab.scopeDescription" ), 20 )
492
493
.setResizable (true );
493
494
scopesGrid .addTextColumn (s -> s .getAttributes () != null ? String .join ("," , s .getAttributes ()) : "" ,
494
- msg .getMessage ("OAuthEditorGeneralTab.scopeAttributes" ), 30 ).setResizable (true );
495
+ msg .getMessage ("OAuthEditorGeneralTab.scopeAttributes" ), 20 ).setResizable (true );
495
496
scopesGrid .setMinHeightByRow (12 );
496
497
addGotoEditColumn .setComparator ((s1 , s2 ) -> compareScopes (systemScopesNames , s1 , s2 ));
497
498
configBinder .forField (scopesGrid ).bind ("scopes" );
0 commit comments