template fixes + bug fixes + style fixes

This commit is contained in:
Dennis Eichhorn 2024-04-02 21:40:47 +00:00
parent 2e53518737
commit 104c3adb3f
6 changed files with 6 additions and 7 deletions

View File

@ -84,7 +84,7 @@ final class BackendController extends Controller
->where('tags/title/language', $request->header->l11n->language)
->sort('createdAt', OrderType::DESC)
->limit(20)
->execute();
->executeGetArray();
$view->data['boards'] = $list;
@ -162,7 +162,7 @@ final class BackendController extends Controller
->where('tags/title/language', $request->header->l11n->language)
->sort('createdAt', OrderType::DESC)
->limit(25)
->execute();
->executeGetArray();
$view->data['boards'] = $list;

View File

@ -54,7 +54,7 @@ final class SearchController extends Controller
->where('tags/title/language', $response->header->l11n->language)
->sort('createdAt', OrderType::DESC)
->limit(8)
->execute();
->executeGetArray();
$results = [];
foreach ($docs as $doc) {

View File

@ -20,7 +20,7 @@ return ['Kanban' => [
'Back' => 'Zurück',
'Date' => 'Datum',
'Description' => 'Beschreibung',
'Board' => 'Board',
'Board' => 'Board',
'Name' => 'Name',
'Status' => 'Status',
'Tags' => 'Stichworte',

View File

@ -20,7 +20,7 @@ return ['Kanban' => [
'Back' => 'Back',
'Date' => 'Date',
'Description' => 'Description',
'Board' => 'Board',
'Board' => 'Board',
'Name' => 'Name',
'Status' => 'Status',
'Tags' => 'Tags',

View File

@ -30,7 +30,7 @@ $columns = $board->getColumns();
<div id="kanban-column-<?= $i; ?>" class="box col-xs-3" style="min-width: 300px;">
<header class="simple-flex">
<span><?= $this->printHtml($column->name); ?></span>
<a href="<?= UriFactory::build('{/base}/kanban/card/create?{?}&id=' . $board->id) ?>"><i class="g-icon">add_circle</i></a>
<a href="<?= UriFactory::build('{/base}/kanban/card/create?{?}&id=' . $board->id); ?>"><i class="g-icon">add_circle</i></a>
</header>
<?php $j = 0; foreach ($cards as $card) : $j++;
$url = UriFactory::build('{/base}/kanban/card/view?{?}&id=' . $card->id);

View File

@ -17,7 +17,6 @@ namespace Modules\Kanban\tests\Models;
use Modules\Kanban\Models\CardStatus;
use Modules\Kanban\Models\CardType;
use Modules\Kanban\Models\KanbanCard;
use Modules\Kanban\Models\NullKanbanCardComment;
use Modules\Tasks\Models\Task;
/**