This website works better with JavaScript.
Home
Explore
Help
Sign In
ruhnet
/
monster-ui-voip
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
OOB: Stop adding 1 to feature keys' index on save since they start at 1 (index 0) now
4.3
Joris Tirado
10 years ago
parent
e5c73b4e6c
commit
2544852469
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
submodules/devices/devices.js
+ 1
- 1
submodules/devices/devices.js
View File
@ -585,7 +585,7 @@ define(function(require){
var
featureKeys
=
{
}
;
formData
.
provision
.
feature_keys
.
forEach
(
function
(
val
,
idx
)
{
featureKeys
[
idx
+
1
]
=
val
;
featureKeys
[
idx
]
=
val
;
}
)
;
formData
.
provision
.
feature_keys
=
featureKeys
;
Write
Preview
Loading…
Cancel
Save