diff --git a/components/ILIAS/UI/src/examples/Table/Presentation/base.php b/components/ILIAS/UI/src/examples/Table/Presentation/base.php index 391501792125..0f6f96171595 100755 --- a/components/ILIAS/UI/src/examples/Table/Presentation/base.php +++ b/components/ILIAS/UI/src/examples/Table/Presentation/base.php @@ -73,7 +73,7 @@ function ($row, $record, $ui_factory, $environment) use ($modal) { //mapping-clo array( $record['begin_date'], $record['location'], - 'Available Slots: ' => $record['bookings_available'] + 'Available Slots' => $record['bookings_available'] ) ) @@ -90,11 +90,11 @@ function ($row, $record, $ui_factory, $environment) use ($modal) { //mapping-clo ->withFurtherFieldsHeadline('Detailed Information') ->withFurtherFields( array( - 'Location: ' => $record['location'], + 'Location' => $record['location'], $record['address'], - 'Date: ' => $record['date'], - 'Available Slots: ' => $record['bookings_available'], - 'Fee: ' => $record['fee'] + 'Date' => $record['date'], + 'Available Slots' => $record['bookings_available'], + 'Fee' => $record['fee'] ) ) ->withAction( diff --git a/components/ILIAS/UI/src/templates/default/Table/tpl.presentationrow.html b/components/ILIAS/UI/src/templates/default/Table/tpl.presentationrow.html index 2ad28a00922d..249f5582ee10 100755 --- a/components/ILIAS/UI/src/templates/default/Table/tpl.presentationrow.html +++ b/components/ILIAS/UI/src/templates/default/Table/tpl.presentationrow.html @@ -25,18 +25,20 @@