Skip to content
Snippets Groups Projects
Commit e4d5193f authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #3600

Closes #3600

Merge request studip/studip!2497
parent d302967c
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,10 @@ import { $gettext } from './lib/gettext.js';
if (chunks.length > 1) {
$option.text(chunks.join("\n"));
if ($option.is('[data-avatar]')) {
$option.attr('style', `background-image: url('${$option.data('avatar')}`);
}
if ($option.is(':disabled')) {
$option.attr('title', $gettext('Die Person ist bereits eingetragen.'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment