Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lippserd committed Jan 10, 2024
1 parent 875e8a5 commit 66e8cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/Kubernetes/Web/IngressRuleTable.php
Expand Up @@ -67,7 +67,7 @@ public function assemble()
$content = Text::create($rule->$column);
$row->addHtml(new HtmlElement('td', null, $content));
}
foreach ($rule->$this->backend as $backend) {
foreach ($rule->{$this->backend} as $backend) {
foreach ($this->backendColumnDefinitions as $column => $_) {
$content = Text::create($backend->$column);
$row->addHtml(new HtmlElement('td', null, $content));
Expand Down
2 changes: 1 addition & 1 deletion library/Kubernetes/Web/JobDetail.php
Expand Up @@ -50,7 +50,7 @@ protected function assemble()
'section',
null,
new HtmlElement('h2', null, new Text($this->translate('Pods'))),
new PodList($this->job->pods->with(['node']))
new PodList($this->job->pod->with(['node']))
),
new HtmlElement(
'section',
Expand Down

0 comments on commit 66e8cf5

Please sign in to comment.