diff --git a/app/views/resources/_common/_resource_tr.php b/app/views/resources/_common/_resource_tr.php
index 4210e395bebdd306160e3b91545d760cb7aa2e6f..c2d834da4f9473e27942f7c9f995c475e22019c9 100644
--- a/app/views/resources/_common/_resource_tr.php
+++ b/app/views/resources/_common/_resource_tr.php
@@ -237,11 +237,7 @@
                 $actions['0100'] = [
                     $resource->getActionLink('files'),
                     _('Dateien anzeigen'),
-                    Icon::create(
-                        $resource->hasFiles()
-                            ? 'folder-full'
-                            : 'folder-empty'
-                    ),
+                    Icon::create('folder-full'),
                     []
                 ];
                 if ($show_global_admin_actions) {
diff --git a/app/views/room_management/overview/rooms.php b/app/views/room_management/overview/rooms.php
index 4a743a8d76875db3b8b73535e9c112977f82581b..a6323dc6f69ac79c1056aab5687d58b3dec5df6b 100644
--- a/app/views/room_management/overview/rooms.php
+++ b/app/views/room_management/overview/rooms.php
@@ -1,11 +1,16 @@
 <? if ($rooms): ?>
     <table class="default sortable-table rooms-list">
+        <colgroup>
+            <col style="width: 70%">
+            <col style="width: 10%">
+            <col>
+            <col style="width: 20px">
+        </colgroup>
         <thead>
             <tr>
                 <th data-sort="text"><?= _('Name') ?></th>
                 <th data-sort="number"><?= _('Sitzplätze') ?></th>
                 <th data-sort="text"><?= _('Raumkategorie') ?></th>
-                <th data-sort="text"><?= _('Raumtyp') ?></th>
                 <th class="actions"><?= _('Aktionen') ?></th>
             </tr>
         </thead>
@@ -38,7 +43,6 @@
                         'show_room_picture' => true,
                         'additional_columns' => [
                             $room->category->name,
-                            $room->room_type,
                         ]
                     ]
                 ) ?>