mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
|
export const config = {
|
||
|
plugins: {
|
||
|
// Provides the "clear" button on the widget
|
||
|
clear_button: {
|
||
|
html: (data: Dict) =>
|
||
|
`<i class="mdi mdi-close-circle ${data.className}" title="${data.title}"></i>`,
|
||
|
},
|
||
|
},
|
||
|
};
|