luci-mod-network: clarify device settings reset button tooltip

Ref: #5090
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 26e21d43b5)
This commit is contained in:
Jo-Philipp Wich 2021-06-01 15:25:24 +02:00
parent 9bbf5d4002
commit caa0abf99a

View file

@ -1139,6 +1139,7 @@ return view.extend({
deleteBtn = trEl.querySelector('button:last-child');
deleteBtn.firstChild.data = _('Reset');
deleteBtn.setAttribute('title', _('Remove related device settings from the configuration'));
deleteBtn.disabled = section_id.match(/^dev:/) ? true : null;
return trEl;