mirror of
https://github.com/openwrt/luci.git
synced 2026-04-15 10:51:51 +00:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
'use strict';
|
|
'require baseclass';
|
|
'require form';
|
|
|
|
return baseclass.extend({
|
|
title: _('Load Plugin Configuration'),
|
|
description: _('The load plugin collects statistics about the general system load.'),
|
|
|
|
configSummary(section) {
|
|
return _('Load monitoring enabled');
|
|
}
|
|
});
|