Fix #141 : Convert InputField value to string

This commit is contained in:
Bubka 2022-11-25 13:13:19 +01:00
parent 312ad46fd6
commit 67068b5ccd

View File

@ -93,8 +93,7 @@ Vue.mixin({
] ]
.filter((key) => credentials.response[key] !== undefined) .filter((key) => credentials.response[key] !== undefined)
.forEach((key) => { .forEach((key) => {
if( credentials.response[key] === null ) if (credentials.response[key] === null) {
{
parseCredentials.response[key] = null parseCredentials.response[key] = null
} }
else { else {
@ -163,6 +162,7 @@ Vue.mixin({
*/ */
inputId(fieldType, fieldName) { inputId(fieldType, fieldName) {
let prefix let prefix
fieldName = fieldName.toString()
switch (fieldType) { switch (fieldType) {
case 'button': case 'button':