Skip to content

Commit

Permalink
fix(appstore): Hide last modified information for shipped apps
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>

[skip ci]
  • Loading branch information
SystemKeeper authored and backportbot[bot] committed Oct 17, 2024
1 parent 3bdef7e commit 9da6963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/settings/lib/Controller/AppSettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ private function getAppsForCategory($requestedCategory = ''): array {
'summary' => $app['translations'][$currentLanguage]['summary'] ?? $app['translations']['en']['summary'],
'license' => $app['releases'][0]['licenses'],
'author' => $authors,
'shipped' => false,
'shipped' => $this->appManager->isShipped($app['id']),
'version' => $currentVersion,
'default_enable' => '',
'types' => [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</li>
</ul>

<div v-if="lastModified" class="app-details__section">
<div v-if="lastModified && !app.shipped" class="app-details__section">
<h4>
{{ t('settings', 'Latest updated') }}
</h4>
Expand Down

0 comments on commit 9da6963

Please sign in to comment.