Changes between Initial Version and Version 1 of Ticket #32063
- Timestamp:
- Oct 1, 2020, 11:17:34 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32063
- Property Component Uncategorized → contrib.admin
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #32063 – Description
initial v1 1 1 I am using the django-dynamic-raw-id in my project which calls the windowname_to_id function that user to be in RelatedObjectLookup.js for in the js/admin folder. After upgrading to Django 3.1.1 the windowname_to_id function is no longer there. Was this removed on purpose and I should see other solutions? 2 2 {{{ 3 3 function windowname_to_id(text) { 4 4 text = text.replace(/__dot__/g, '.'); … … 6 6 return text; 7 7 } 8 }}}