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

Closes #4247: Add option to show/hide enabled/disabled interfaces on device

This commit is contained in:
checktheroads
2021-05-26 16:32:09 -07:00
parent 587335e3ba
commit e004f872f9
13 changed files with 378 additions and 21 deletions

View File

@ -8,6 +8,7 @@ import { initMessages } from './messages';
import { initClipboard } from './clipboard';
import { initDateSelector } from './dateSelector';
import { initTableConfig } from './tableConfig';
import { initInterfaceTable } from './tables';
function init() {
for (const init of [
@ -21,6 +22,7 @@ function init() {
initButtons,
initClipboard,
initTableConfig,
initInterfaceTable,
]) {
init();
}