From 029fe9cac6de7767f3b80861effa86a7eacaec69 Mon Sep 17 00:00:00 2001
From: David Siegfried <david.siegfried@uni-vechta.de>
Date: Sat, 11 Mar 2023 12:10:56 +0000
Subject: [PATCH] remove useless whitespace and fix alignment, closes #2343

Closes #2343

Merge request studip/studip!1533
---
 .../resource/_standard_properties_display_part.php         | 7 +++++--
 app/views/resources/room/index.php                         | 6 +++++-
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/app/views/resources/resource/_standard_properties_display_part.php b/app/views/resources/resource/_standard_properties_display_part.php
index a3cb51a6d92..48946c98ab8 100644
--- a/app/views/resources/resource/_standard_properties_display_part.php
+++ b/app/views/resources/resource/_standard_properties_display_part.php
@@ -23,6 +23,10 @@
             </header>
 
             <table class="default">
+                <colgroup>
+                    <col style="width: 70%">
+                    <col>
+                </colgroup>
                 <thead>
                     <tr>
                         <th>
@@ -39,8 +43,7 @@
                             <td>
                                 <?= htmlReady(
                                     $property->display_name
-                                        ? $property->display_name
-                                        : $property->name
+                                        ?: $property->name
                                 ) ?>
                             </td>
                             <td>
diff --git a/app/views/resources/room/index.php b/app/views/resources/room/index.php
index d00aaa8b105..8782832e503 100644
--- a/app/views/resources/room/index.php
+++ b/app/views/resources/room/index.php
@@ -19,7 +19,7 @@
         <h1><?= _('Beschreibung und Hinweise') ?></h1>
     </header>
     <section>
-        <? if ($room->description): ?>
+        <? if ((string)$room->description !== ''): ?>
             <p><?= htmlReady($room->description) ?></p>
         <? endif ?>
         <ul>
@@ -51,6 +51,10 @@
             <h1><?= _('Dateien') ?></h1>
         </header>
         <table class="default sortable-table" data-sortlist="[[2, 0]]">
+            <colgroup>
+                <col style="width: 70%">
+                <col>
+            </colgroup>
             <?= $this->render_partial('files/_files_thead') ?>
             <? foreach ($resource_folder->getFiles() as $file): ?>
                 <? if ($file->isVisible($GLOBALS['user']->id)) : ?>
-- 
GitLab