This commit is contained in:
ayntk-ai
2024-08-16 14:45:40 +02:00
parent ea4b085dbe
commit e3b9884247
3 changed files with 30 additions and 6 deletions

View File

@@ -7,8 +7,8 @@ use Livewire\Component;
class Executions extends Component
{
public $executions = [];
public $selectedKey;
public $task;
public function getListeners()
{
@@ -26,4 +26,12 @@ class Executions extends Component
}
$this->selectedKey = $key;
}
}
public function getServerTimezone()
{
$server = data_get($this, 'destination.server');
$serverTimezone = $server->settings->server_timezone;
ray('Server Timezone:', $serverTimezone);
return $serverTimezone;
}
}