Explorar el Código

Fixes #15336: Correct label for recurring scheduled jobs

Jeremy Stretch hace 1 año
padre
commit
eeb732d96e
Se han modificado 2 ficheros con 5 adiciones y 1 borrados
  1. 4 0
      docs/release-notes/version-3.7.md
  2. 1 1
      netbox/templates/core/job.html

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

@@ -7,6 +7,10 @@
 * [#15291](https://github.com/netbox-community/netbox/issues/15291) - Add tunnel termination buttons to VM interfaces table
 * [#15297](https://github.com/netbox-community/netbox/issues/15297) - Linkify platform column in device & virtual machine tables
 
+### Bug Fixes
+
+* [#15336](https://github.com/netbox-community/netbox/issues/15336) - Correct label for recurring scheduled jobs
+
 ---
 
 ## v3.7.3 (2024-02-21)

+ 1 - 1
netbox/templates/core/job.html

@@ -63,7 +63,7 @@
               <td>
                 {{ object.scheduled|annotated_date|placeholder }}
                 {% if object.interval %}
-                  ({% blocktrans with interval=object.interval %}every {{ interval }} seconds{% endblocktrans %})
+                  ({% blocktrans with interval=object.interval %}every {{ interval }} minutes{% endblocktrans %})
                 {% endif %}
               </td>
             </tr>