Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Textfield, after deleting the entry (by function) the counter is not reset to 0. #134

Closed
MarJun1988 opened this issue Jun 4, 2022 · 1 comment

Comments

@MarJun1988
Copy link

Development Relevant Information:

  • BalmUI version: 10.5.0
  • Browser: Firefox
  • Operating System: Mac OS X

Description:

Textfield, after deleting the entry (by function) the counter is not reset to 0.

Steps To Reproduce:

<ui-textfield
              v-model="entry.address"
              maxlength="20"
              max="20"
              minlength="3"
              min="3"
              :fullwidth="true"
              helper-text-id="helper-address"
              outlined
          >
          Address
          </ui-textfield>
          <ui-textfield-helper with-counter id="helper-address" visible> 
Address from the ....
          </ui-textfield-helper>


setup()  {

const entry = ref({
      id: null,
      name: null,
      description: null
    });

 // Eintrag wieder zurücksetzen
    const resetEntry = () => {
      entry.value.id = null;
      entry.value.address = null;
      entry.value.description = null;
    }
}
@elf-mouse
Copy link
Member

elf-mouse commented Jul 3, 2022

Hi @MarJun1988 , this bug has been fixed in v10.8.3

Thanks a lot :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants