File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ # v2.6.13 (FUTURE)
2
+
3
+ ## Bug Fixes
4
+
5
+ * [ #3914 ] ( https://github.com/netbox-community/netbox/issues/3914 ) - Fix interface filter field when unauthenticated
6
+
7
+ ---
8
+
1
9
# v2.6.12 (2020-01-13)
2
10
3
11
## Enhancements
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ $('button.toggle-ips').click(function() {
15
15
$ ( 'input.interface-filter' ) . on ( 'input' , function ( ) {
16
16
var filter = new RegExp ( this . value ) ;
17
17
18
- for ( interface of $ ( this ) . closest ( 'form ' ) . find ( 'tbody > tr' ) ) {
18
+ for ( interface of $ ( this ) . closest ( 'div.panel ' ) . find ( 'tbody > tr' ) ) {
19
19
// Slice off 'interface_' at the start of the ID
20
20
if ( filter && filter . test ( interface . id . slice ( 10 ) ) ) {
21
21
// Match the toggle in case the filter now matches the interface
You can’t perform that action at this time.
0 commit comments