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

#6372: Implement table-flush styling, improve changelog layout

This commit is contained in:
checktheroads
2021-07-13 09:14:57 -07:00
parent 6b88ed0321
commit bfb1b6ac0a
12 changed files with 100 additions and 48 deletions

View File

@ -11,6 +11,7 @@ import { initTableConfig } from './tableConfig';
import { initInterfaceTable } from './tables';
import { initSideNav } from './sidenav';
import { initRackElevation } from './racks';
import { initLinks } from './links';
function init() {
for (const init of [
@ -27,6 +28,7 @@ function init() {
initInterfaceTable,
initSideNav,
initRackElevation,
initLinks,
]) {
init();
}