diff --git a/app/views/resources/_common/_action_menu.php b/app/views/resources/_common/_action_menu.php
index cdd63c9a08542e20a0e5b5660f12bf8589c8b308..fc0e327c43ec5054ea474f2080cd98c4a7ebb677 100644
--- a/app/views/resources/_common/_action_menu.php
+++ b/app/views/resources/_common/_action_menu.php
@@ -75,7 +75,7 @@ if ($show_user_actions) {
     $actions['0100'] = [
         $resource->getActionLink('files'),
         _('Dateien anzeigen'),
-        Icon::create($resource->hasFiles() ? 'folder-full' : 'folder-empty')
+        Icon::create('folder-full')
     ];
     if ($show_global_admin_actions) {
         $actions['0110'] = [
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,
                         ]
                     ]
                 ) ?>