Uploaded image for project: 'Migration Toolkit for Virtualization'
  1. Migration Toolkit for Virtualization
  2. MTV-1572

Password field split to two lines

XMLWordPrintable

    • False
    • None
    • True
    • VIRTSTRAT-6 - Engineering Excellence

      Patternfly 5 password input fields use <InputGroup> and {{<InputGroupItem> , }}In our code we use the Patternfly 4 notation that does not use it.

      We need to add the missing <InputGroup> and  <InputGroupItem> to our input fields where needed:

      PF5 notation example:
            <InputGroup>
              <InputGroupItem isFill>
                <TextInput />
              </InputGroupItem>
              <InputGroupItem>
                <Button>
                  {passwordHidden ? <EyeIcon /> : <EyeSlashIcon />}
                </Button>
              </InputGroupItem>
      {{      </InputGroup>
      }}
      Our current code the input group items are missing:

      <TextInput />
      <Button >

      {state.passwordHidden ? <EyeIcon/> : <EyeSlashIcon/>}

      </Button>

            sgratch@redhat.com Sharon Gratch
            yzamir@redhat.com Yaacov Zamir
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: