Skip to content

Commit 72a09d0

Browse files
Adding Unclaimed Cleaning
1 parent 195ac4d commit 72a09d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Console/Commands/ListUnclaimedAppInstancesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function handle(): int
6969
$rows[] = [
7070
$instance->id,
7171
$instance->name,
72-
$instance->storeApp->store->name . " - " . $instance->storeApp->name,
72+
$instance->storeApp->store->name . " - " . $instance->storeApp->name . "(" . $instance->storeApp->id . ")",
7373
$instance->status->value,
7474
$instance->created_at->format('Y-m-d H:i:s'),
7575
$instance->app_type

app/Console/Commands/RemoveUnclaimedAppInstancesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function handle(): int
7171
$rows[] = [
7272
$instance->id,
7373
$instance->name,
74-
$instance->storeApp->store->name . " - " . $instance->storeApp->name,
74+
$instance->storeApp->store->name . " - " . $instance->storeApp->name . "(" . $instance->storeApp->id . ")",
7575
$instance->status->value,
7676
$instance->created_at->format('Y-m-d H:i:s'),
7777
$instance->app_type

0 commit comments

Comments
 (0)