Skip to content

Commit

Permalink
Add missing quote to fix "View larger" checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
corylown committed Dec 6, 2024
1 parent d8c7048 commit 1b674a1
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 24 deletions.
29 changes: 19 additions & 10 deletions app/assets/javascripts/spotlight/spotlight.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/assets/javascripts/spotlight/spotlight.esm.js.map

Large diffs are not rendered by default.

29 changes: 19 additions & 10 deletions app/assets/javascripts/spotlight/spotlight.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/assets/javascripts/spotlight/spotlight.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions app/javascript/spotlight/admin/blocks/uploaded_items_block.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ SirTrevor.Blocks.UploadedItems = (function(){
</div>
<div class="col-md-4">
<input name="${this.zpr_key}" type="hidden" value="false" />
<input name="${this.zpr_key}" id="${this.formId(this.zpr_key)}" data-key=${this.zpr_key}" type="checkbox" value="true" />
<label for="${this.formId(this.zpr_key)}">${ i18n.t("blocks:solr_documents:zpr:title")}</label>
<input name="${this.zpr_key}" id="${this.formId(this.zpr_key)}" data-key="${this.zpr_key}" type="checkbox" value="true" />
<label for="${this.formId(this.zpr_key)}">${i18n.t("blocks:solr_documents:zpr:title")}</label>
</div>
</div>
${this.text_area()}
Expand Down

0 comments on commit 1b674a1

Please sign in to comment.