Port galaxy to webpack

This commit is contained in:
2024-10-13 18:13:10 +02:00
committed by Bartuccio Antoine
parent d77358eaac
commit cdf9519a9f
10 changed files with 474 additions and 125 deletions

View File

@ -160,7 +160,7 @@ class TestGalaxyView(TestCase):
response = self.client.get(reverse("galaxy:user", args=[user.id]))
self.assertContains(
response,
f'<a onclick="focus_node(get_node_from_id({user.id}))">Reset on {user}</a>',
f'<a onclick="window.focusNode(window.getNodeFromId({user.id}))">Reset on {user}</a>',
status_code=200,
)