Skip to content

Commit e7a8723

Browse files
committed
Fixes #18674: Fix form reset when selecting a value from a speed selection dropdown
1 parent ed79e3b commit e7a8723

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

netbox/project-static/dist/netbox.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/dist/netbox.js

Lines changed: 5 additions & 5 deletions
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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@
5353
},
5454
"resolutions": {
5555
"@types/bootstrap/**/@popperjs/core": "^2.11.6"
56-
}
56+
},
57+
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
5758
}

netbox/project-static/src/htmx.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
import { initForms } from './forms';
12
import { initButtons } from './buttons';
2-
import { initClipboard } from './clipboard'
3+
import { initClipboard } from './clipboard';
34
import { initSelects } from './select';
45
import { initObjectSelector } from './objectSelector';
56
import { initBootstrap } from './bs';
@@ -9,6 +10,7 @@ import { initQuickAdd } from './quickAdd';
910
function initDepedencies(): void {
1011
initButtons();
1112
initClipboard();
13+
initForms();
1214
initSelects();
1315
initObjectSelector();
1416
initQuickAdd();

0 commit comments

Comments
 (0)