diff --git a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart index 2e4a9f7..30560d1 100644 --- a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart @@ -560,8 +560,17 @@ class _OrganizationSettingsDialogState child: DropdownButtonFormField( initialValue: selectedRole, items: ['admin', 'member'].map((role) { - return DropdownMenuItem(value: role, child: Text(role)); + return DropdownMenuItem( + value: role, + child: InkWell( + splashFactory: NoSplash.splashFactory, + highlightColor: Colors.transparent, + splashColor: Colors.transparent, + child: Text(role), + ), + ); }).toList(), + dropdownColor: AppTheme.primaryBackground, onChanged: (value) => selectedRole = value ?? 'member', decoration: InputDecoration( labelText: 'Role',