summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/js/apps.js8
-rw-r--r--settings/templates/apps.php4
2 files changed, 6 insertions, 6 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 258b0f4adcc..b400572a542 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -40,10 +40,10 @@ OC.Settings.Apps = OC.Settings.Apps || {
this._loadCategoriesCall.abort();
}
- var categories = [
- {displayName: t('settings', 'Enabled apps'), ident: 'enabled', id: '0'},
- {displayName: t('settings', 'Disabled apps'), ident: 'disabled', id: '1'},
- {displayName: t('settings', 'Your apps'), ident: 'installed', id: '2'}
+ var categories = [,
+ {displayName: t('settings', 'Your apps'), ident: 'installed', id: '0'},
+ {displayName: t('settings', 'Enabled apps'), ident: 'enabled', id: '1',},
+ {displayName: t('settings', 'Disabled apps'), ident: 'disabled', id: '2'}
];
var source = $("#categories-template").html();
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index e32a524f78a..91a73fcbe56 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -18,13 +18,13 @@ script(
<script id="categories-template" type="text/x-handlebars-template">
{{#each this}}
<li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0">
- <a href="#">{{displayName}}</a>
+ <a href="#" class="icon-category-{{ident}}">{{displayName}}</a>
</li>
{{/each}}
<?php if($_['appstoreEnabled']): ?>
<li>
- <a class="app-external" target="_blank" rel="noreferrer" href="https://docs.nextcloud.org/server/12/developer_manual/"><?php p($l->t('Developer documentation'));?> ↗</a>
+ <a class="app-external icon-info" target="_blank" rel="noreferrer" href="https://docs.nextcloud.org/server/12/developer_manual/"><?php p($l->t('Developer documentation'));?> ↗</a>
</li>
<?php endif; ?>
</script>