fix(appstore): Hide last modified information for shipped apps

Signed-off-by: Marcel Müller <marcel-mueller@gmx.de>
This commit is contained in:
Marcel Müller 2024-10-16 23:46:45 +02:00
parent 245b724edd
commit 2023f3cce3
6 changed files with 8 additions and 8 deletions

View file

@ -418,7 +418,7 @@ class AppSettingsController extends Controller {
'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' => [],

View file

@ -97,7 +97,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>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long