mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-05-29 22:39:11 +02:00
Fix #141 : Convert InputField value to string
This commit is contained in:
parent
312ad46fd6
commit
67068b5ccd
4
resources/js/mixins.js
vendored
4
resources/js/mixins.js
vendored
@ -93,8 +93,7 @@ Vue.mixin({
|
||||
]
|
||||
.filter((key) => credentials.response[key] !== undefined)
|
||||
.forEach((key) => {
|
||||
if( credentials.response[key] === null )
|
||||
{
|
||||
if (credentials.response[key] === null) {
|
||||
parseCredentials.response[key] = null
|
||||
}
|
||||
else {
|
||||
@ -163,6 +162,7 @@ Vue.mixin({
|
||||
*/
|
||||
inputId(fieldType, fieldName) {
|
||||
let prefix
|
||||
fieldName = fieldName.toString()
|
||||
|
||||
switch (fieldType) {
|
||||
case 'button':
|
||||
|
Loading…
x
Reference in New Issue
Block a user