Skip to content

Commit

Permalink
Expermineting to drag results
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrikBuetler committed Jun 18, 2024
1 parent 8819ad9 commit 197b8f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/ui/results.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ public function get() {
$arr = $system->getResultsAll();
$jsonJob = json_decode($arr, true);
foreach ($jsonJob as $job) {
echo gettype($job). "<br>";
echo gettype($job) . "<br>";
foreach ($job as $element) {
echo gettype($element). "<br>";
echo gettype($element) . "<br>";
echo 'Element: ' . $element. "<br>";
}
}
Expand Down

0 comments on commit 197b8f2

Please sign in to comment.