1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#6372: Implement layout improvements

This commit is contained in:
checktheroads
2021-06-22 17:20:17 -07:00
parent a8a9e061a1
commit eb0d5c996e
24 changed files with 564 additions and 153 deletions

View File

@ -9,6 +9,7 @@ import { initClipboard } from './clipboard';
import { initDateSelector } from './dateSelector';
import { initTableConfig } from './tableConfig';
import { initInterfaceTable } from './tables';
import { initSideNav } from './sidenav';
function init() {
for (const init of [
@ -23,6 +24,7 @@ function init() {
initClipboard,
initTableConfig,
initInterfaceTable,
initSideNav,
]) {
init();
}