aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrigorii K. Shartsev <me@shgk.me>2024-03-13 15:20:08 +0100
committerGrigorii K. Shartsev <me@shgk.me>2024-03-19 15:38:51 +0100
commit31baf8d469fac250944b2d76f82336d83a1568c3 (patch)
treed73bb57ae6bae3469aed6270223cf6948ec51365
parent295b7cbc1a465a0a4ef3756667835b5eb9cf9d52 (diff)
downloadnextcloud-server-31baf8d469fac250944b2d76f82336d83a1568c3.tar.gz
nextcloud-server-31baf8d469fac250944b2d76f82336d83a1568c3.zip
refactor(settings): remove unneeded classes from hidden header
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
-rw-r--r--apps/settings/src/components/AppList.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/settings/src/components/AppList.vue b/apps/settings/src/components/AppList.vue
index 80f999824b6..be5e6bd03e6 100644
--- a/apps/settings/src/components/AppList.vue
+++ b/apps/settings/src/components/AppList.vue
@@ -40,19 +40,19 @@
<transition-group name="app-list" tag="table" class="apps-list-container">
<tr key="app-list-view-header" class="apps-header">
- <th class="app-image">
+ <th>
<span class="hidden-visually">{{ t('settings', 'Icon') }}</span>
</th>
- <th class="app-name">
+ <th>
<span class="hidden-visually">{{ t('settings', 'Name') }}</span>
</th>
- <th class="app-version">
+ <th>
<span class="hidden-visually">{{ t('settings', 'Version') }}</span>
</th>
- <th class="app-level">
+ <th>
<span class="hidden-visually">{{ t('settings', 'Level') }}</span>
</th>
- <th class="actions">
+ <th>
<span class="hidden-visually">{{ t('settings', 'Actions') }}</span>
</th>
</tr>
@@ -66,19 +66,19 @@
<table v-if="useBundleView"
class="apps-list-container">
<tr key="app-list-view-header" class="apps-header">
- <th id="app-table-col-icon" class="app-image">
+ <th id="app-table-col-icon">
<span class="hidden-visually">{{ t('settings', 'Icon') }}</span>
</th>
- <th id="app-table-col-name" class="app-name">
+ <th id="app-table-col-name">
<span class="hidden-visually">{{ t('settings', 'Name') }}</span>
</th>
- <th id="app-table-col-version" class="app-version">
+ <th id="app-table-col-version">
<span class="hidden-visually">{{ t('settings', 'Version') }}</span>
</th>
- <th id="app-table-col-level" class="app-level">
+ <th id="app-table-col-level">
<span class="hidden-visually">{{ t('settings', 'Level') }}</span>
</th>
- <th id="app-table-col-actions" class="actions">
+ <th id="app-table-col-actions">
<span class="hidden-visually">{{ t('settings', 'Actions') }}</span>
</th>
</tr>