Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Eichhorn committed May 12, 2024
1 parent 9954e59 commit 642b819
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you for createing this issue. We will check it as soon as possible.'
issue-message: 'Thank you for creating this issue. We will check it as soon as possible.'
pr-message: 'Thank you for your pull request. We will check it as soon as possible.'
4 changes: 2 additions & 2 deletions Admin/Settings/Theme/Backend/settings.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<div class="row">
<div class="col-xs-12">
<div class="portlet">
<section class="portlet">
<div class="portlet-head"><?= $this->getHtml('Apps'); ?><i class="g-icon download btn end-xs">download</i></div>
<div class="slider">
<table id="appList" class="default sticky">
Expand Down Expand Up @@ -67,6 +67,6 @@
<?php endif; ?>
</table>
</div>
</div>
</section>
</div>
</div>
2 changes: 2 additions & 0 deletions Controller/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,11 @@ public function createQAQuestionFromRequest(RequestAbstract $request, ResponseAb
$question->status = QAQuestionStatus::tryFromValue($request->getDataInt('status')) ?? QAQuestionStatus::ACTIVE;
$question->createdBy = new Profile(new NullAccount($request->header->account));

/*
if ($request->hasData('tags')) {
$question->tags = $this->app->moduleManager->get('Tag', 'Api')->createTagsFromRequest($request);
}
*/

// @todo implement subfolders
if (!empty($request->files)) {
Expand Down
4 changes: 2 additions & 2 deletions Theme/Backend/qa-app-list.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<section class="portlet">
<div class="portlet-head">
<?= $this->getHtml('Apps'); ?>
<i class="g-icon download btn end-xs">download</i>
Expand All @@ -46,6 +46,6 @@
<?php endif; ?>
</table>
</div>
</div>
</section>
</div>
</div>

0 comments on commit 642b819

Please sign in to comment.