File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -261,18 +261,18 @@ pub fn OrgSettings() -> impl IntoView {
261
261
<p class="text-gray-700" >{ "Manage your organization's settings" } </p>
262
262
</div>
263
263
<div class="mb-8" >
264
- <div class="w-full p-8 border rounded-xl" >
264
+ <div class="w-full p-8 border rounded-xl shadow " >
265
265
<UpdateNameView />
266
266
</div>
267
267
<div
268
- class="mt-4 w-full p-8 border rounded-xl"
268
+ class="mt-8 w-full p-8 border rounded-xl shadow "
269
269
class: hidden=move || !cluster_info. with( |i| i. as_ref( ) . map( |i| i. has_enterprise) ) . unwrap_or( false )
270
270
>
271
271
<AutoStartStopView />
272
272
</div>
273
273
274
274
<div
275
- class="mt-4 w-full p-8 border rounded-xl"
275
+ class="mt-8 w-full p-8 border rounded-xl shadow "
276
276
class: hidden=move || !login. with( |l| { l. as_ref( ) . and_then( |l| l. as_ref( ) . map( |l| l. organization. role == UserRole :: Owner ) ) . unwrap_or( false ) } )
277
277
>
278
278
<h5 class="text-lg font-semibold" >
Original file line number Diff line number Diff line change @@ -389,7 +389,11 @@ impl WorkspaceServer {
389
389
. output ( )
390
390
. await ?;
391
391
392
- Command :: new ( "userdel" ) . arg ( osuser) . output ( ) . await ?;
392
+ Command :: new ( "userdel" )
393
+ . arg ( "-f" )
394
+ . arg ( osuser)
395
+ . output ( )
396
+ . await ?;
393
397
394
398
tokio:: fs:: remove_dir ( & workspace_base_folder) . await ?;
395
399
tokio:: fs:: remove_dir_all ( format ! ( "/home/{osuser}" ) ) . await ?;
You can’t perform that action at this time.
0 commit comments