From 7f66cab77b42acdb23f5119e990353cf72059102 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michaela=20Br=C3=BCckner?= <brueckner@data-quest.de> Date: Tue, 30 Jan 2024 11:22:12 +0000 Subject: [PATCH] fixes #3683 Closes #3683 Merge request studip/studip!2560 --- app/views/admin/login_style/edit_faq.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/views/admin/login_style/edit_faq.php b/app/views/admin/login_style/edit_faq.php index 66020a02274..066991a6b2b 100644 --- a/app/views/admin/login_style/edit_faq.php +++ b/app/views/admin/login_style/edit_faq.php @@ -16,13 +16,16 @@ <input type="text" name="title" value="<?= htmlReady($entry->title) ?>" required> </label> - <label class="studiprequired"> - <?= _('Text') ?> - <span title="<?= _('Dies ist ein Pflichtfeld') ?>" aria-hidden="true" class="asterisk">*</span> + <label> + <span class="studiprequired"> + <?= _('Text') ?> + <span title="<?= _('Dies ist ein Pflichtfeld') ?>" aria-hidden="true" class="asterisk">*</span> + </span> <textarea name="description" class="add_toolbar wysiwyg" data-editor="toolbar=minimal"><?= htmlReady($entry->description)?></textarea> </label> + <div data-dialog-button> <?= \Studip\Button::create(_('Speichern')) ?> </div> -- GitLab