<https://tca0.nl/peq> Is there another way of cha...
# talk-kratos
c
https://tca0.nl/peq Is there another way of changing “ID” to E-Mail (since it’s actually an email field). Right now I am overriding getNodeLabel in kratos-ui but it feels like a hack to me
l
I think it uses the
title
value from the identity
c
Don’t think so
Copy code
"properties": {
        "email": {
          "type": "string",
          "format": "email",
          "title": "E-Mail",
          "<http://ory.sh/kratos|ory.sh/kratos>": {
            "credentials": {
              "password": {
                "identifier": true
              },
              "webauthn": {
                "identifier": true
              },
              "totp": {
                "account_name": true
              }
            },
            "recovery": {
              "via": "email"
            },
            "verification": {
              "via": "email"
            }
          },
          "maxLength": 320
        },
        "username": {
          "type": "string",
          "title": "Username/nickname",
          "minLength": 2,
          "maxLength": 24
        }
      },
      "required": [
        "email",
        "username"
      ],
      "additionalProperties": false
    }
it should be E-Mail
but it’s “ID”
l
I checked the code it doesn't seem to be configurable, the identity title is only used for registration flow
c
would be great if it would respect the title in Login as well