Skip to content

Commit e3008ba

Browse files
committed
#6372: Fix static select class regression from 08f0a5d
1 parent cdc9753 commit e3008ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

netbox/project-static/dist/netbox.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/dist/netbox.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/src/select/static.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import SlimSelect from 'slim-select';
22
import { getElements } from '../util';
33

44
export function initStaticSelect() {
5-
for (const select of getElements<HTMLSelectElement>('.netbox-select-static')) {
5+
for (const select of getElements<HTMLSelectElement>('.netbox-static-select')) {
66
if (select !== null) {
77
const label = document.querySelector(`label[for=${select.id}]`) as HTMLLabelElement;
88

0 commit comments

Comments
 (0)