We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37c617 commit 8a29355Copy full SHA for 8a29355
2 files changed
config.dist.php
@@ -136,5 +136,5 @@
136
'decimal-sep' => ',',
137
'thousands-sep' => ' ',
138
'list-view' => 'table', // table/tree - default key list view
139
- 'panelrefresh' => 30000, // In ms, refresh interval for panels - default 30000 (30s)
+ 'panelrefresh' => 30, // In seconds, refresh interval for panels - default 30
140
];
templates/layout.twig
@@ -28,7 +28,7 @@
28
29
document.documentElement.classList.toggle('dark', current_theme === 'dark');
30
31
- const panels_refresh_interval = {{ config('panelrefresh', 2000) }};
+ const panels_refresh_interval = {{ config('panelrefresh', 30) * 1000 }};
32
const ajax_panels = {{ ajax_panels is defined and ajax_panels == true ? 'true' : 'false' }};
33
</script>
34
</head>
0 commit comments