-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closed
Labels
status: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application
Description
NetBox version
v3.4.8
Python version
3.9
Steps to Reproduce
- Go to Devices
- Click tab "Filters"
- Choose at least 2 locations and click "Search"
- On top of the result list, click "Save"
- Notice that there is only one location in the "Parameters" field
Expected Behavior
We get a single string while the behavior in v3.4.6 were to get a list. Either way I'd expect at least 2 values according to the chosen filter settings above, which is not the case.
Observed Behavior
Only one value is shown (and saved afterwards). This happens on the current demo site as well as in my development environment with the current develop branch.
Output of v3.4.6
{
"location_id": [
"33",
"34"
]
}
Output of v.3.4.8
{
"location_id": "34"
}
Metadata
Metadata
Assignees
Labels
status: acceptedThis issue has been accepted for implementationThis issue has been accepted for implementationtype: bugA confirmed report of unexpected behavior in the applicationA confirmed report of unexpected behavior in the application