Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Form/SelectCslForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
if (isset($settings['id'])) {
if ($settings['id'] == 'islandora_citations_display_citations') {
$default_csl = !empty($settings['default_csl']) ? $settings['default_csl'] : array_values($cslItems)[0];
$this->blockCSLType = $settings['default_csl_type'];
$this->blockCSLType = empty($settings['default_csl_type'] ? "" : $settings['default_csl_type']);
}
}
}
Expand Down