Commit 04b5dec 1 parent e55b3e3 commit 04b5dec Copy full SHA for 04b5dec
File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,7 @@ class DevicesList extends List {
165
165
super . UpdateAuthorization ( ) ;
166
166
this . addButton . disabled = ! KEEP . authorization . includes ( "*" ) && ! KEEP . authorization . includes ( "devices:write" ) ;
167
167
this . deleteButton . disabled = ! KEEP . authorization . includes ( "*" ) && ! KEEP . authorization . includes ( "devices:write" ) ;
168
+ this . utilitiesDropDown . button . disabled = ! KEEP . authorization . includes ( "*" ) && ! KEEP . authorization . includes ( "network utilities:write" ) ;
168
169
}
169
170
170
171
InflateElement ( element , entry , type ) { //override
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ class Monitor extends Window {
291
291
292
292
intervalInput . onkeydown = event => {
293
293
if ( event . key === "Enter" ) { okButton . click ( ) ; }
294
- }
294
+ } ;
295
295
296
296
okButton . onclick = ( ) => {
297
297
this . params . interval = intervalInput . value ;
@@ -983,7 +983,7 @@ class Monitor extends Window {
983
983
}
984
984
985
985
queryInput . value = query ;
986
- }
986
+ } ;
987
987
988
988
for ( let j = 0 ; j < propertyCheckboxes . length ; j ++ ) {
989
989
propertyCheckboxes [ j ] . onchange = OnCheckedChange ;
You can’t perform that action at this time.
0 commit comments