Hello everyone
Wappler Version : 7 beta 13
Operating System : windows 11
Server Model: Node
Expected behavior
What do you think should happen?
See the emails tags coming from the database query which I can see its output in the browser's Network panel.
Actual behavior
What actually happens?
Error appears on the browser's console says "Unknown component found! tagify" From BaseComponent.js:285
How to reproduce
- Detail a step by step guide to reproduce the issue
- A screenshot or short video indicating the problem
- A copy of your code would help. Include: JS, HTML.
- Test your steps on a clean page to see if you still have an issue
My code:
<form id="addTeamForm" is="dmx-serverconnect-form" method="post" action="/api/member/createTeam">
<div class="mb-3">
<label class="form-label">Team Name</label>
<input type="text" class="form-control" required="" id="teamName" name="teamName">
</div>
<div class="mb-3">
<label class="form-label">Team Members</label>
<input class="form-control" required="" placeholder="Enter emails separated by a space or a comma" id="membersList" data-msg-pattern="Enter emails separated by comma or a space." name="membersList" type="text" is="dmx-tagify" style="--readonly-striped: 1;" dmx-bind:data="getTeamsMembers.data.query" tag-text="first_name+last_name" tag-secondary="email" tag-value="email">
</div>
<div class="mb-3">
<label class="form-label">Description</label>
<input type="text" class="form-control" placeholder="Enter a description of this team or any notes (Optional)" id="description" name="description">
</div>
</form>