Remove '/overview' from the redirect path to let the menu's firstchild action handle the navigation properly. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
'use strict';
|
|
'require view';
|
|
|
|
return view.extend({
|
|
load: function() {
|
|
window.location.href = L.url('admin', 'secubox', 'network', 'cdn-cache');
|
|
return Promise.resolve();
|
|
},
|
|
render: function() {
|
|
return E('div', {}, _('Redirecting to CDN Cache...'));
|
|
}
|
|
});
|