Skip to content

Commit 723a24e

Browse files
authored
Merge pull request #48754 from nextcloud/backport/48743/stable30
[stable30] fix(appstore): Hide last modified information for shipped apps
2 parents 245b724 + 2023f3c commit 723a24e

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

apps/settings/lib/Controller/AppSettingsController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ private function getAppsForCategory($requestedCategory = ''): array {
418418
'summary' => $app['translations'][$currentLanguage]['summary'] ?? $app['translations']['en']['summary'],
419419
'license' => $app['releases'][0]['licenses'],
420420
'author' => $authors,
421-
'shipped' => false,
421+
'shipped' => $this->appManager->isShipped($app['id']),
422422
'version' => $currentVersion,
423423
'default_enable' => '',
424424
'types' => [],

apps/settings/src/components/AppStoreSidebar/AppDetailsTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
</li>
9898
</ul>
9999

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

dist/settings-apps-view-4529.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-apps-view-4529.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-vue-settings-apps-users-management.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-vue-settings-apps-users-management.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)