jeremystretch 4 лет назад
Родитель
Сommit
ed3bc7cdcc
2 измененных файлов с 5 добавлено и 1 удалено
  1. 4 0
      docs/release-notes/version-3.0.md
  2. 1 1
      netbox/extras/scripts.py

+ 4 - 0
docs/release-notes/version-3.0.md

@@ -2,6 +2,10 @@
 
 ## v3.0.5 (FUTURE)
 
+### Enhancements
+
+* [#7387](https://github.com/netbox-community/netbox/issues/7387) - Enable arbitrary ordering of custom scripts
+
 ### Bug Fixes
 
 * [#6895](https://github.com/netbox-community/netbox/issues/6895) - Remove errant markup for null values in CSV export

+ 1 - 1
netbox/extras/scripts.py

@@ -484,7 +484,7 @@ def get_scripts(use_names=False):
             module_scripts[cls.__name__] = cls
         if module_scripts:
             scripts[module_name] = module_scripts
-    
+
     return scripts