From d30490e420940d80382121803f6f3c04b52cd4f5 Mon Sep 17 00:00:00 2001
From: Tony Busa <70979397+tonybusa@users.noreply.github.com>
Date: Thu, 22 May 2025 15:30:43 -0600
Subject: [PATCH] fix: Problem Bank view link incorrectly replacing embedded
iframe (#36781)
---
xmodule/item_bank_block.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xmodule/item_bank_block.py b/xmodule/item_bank_block.py
index 7adf935e48..b53617e2c8 100644
--- a/xmodule/item_bank_block.py
+++ b/xmodule/item_bank_block.py
@@ -512,7 +512,7 @@ class ItemBankBlock(ItemBankMixin, XBlock):
# Show a summary message and instructions.
summary_html = loader.render_django_template('templates/item_bank/author_view.html', {
# Due to template interpolation limitations, we have to pass some HTML for the link here:
- "view_link": f'',
+ "view_link": f'',
"blocks": [
{"display_name": display_name_with_default(child)}
for child in self.get_children()