-
Notifications
You must be signed in to change notification settings - Fork 55
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
create organizer profile on add event. #358
base: main
Are you sure you want to change the base?
Conversation
<TButton | ||
@click=" | ||
create({ | ||
username: inviteUsername, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a problem with username extraction. Let's say this link will be provided https://facebook.com/profile.php?id=3234
, which username will be set in this case?
|
||
export default { | ||
name: 'TInputProfile', | ||
inheritAttrs: false, | ||
|
||
components: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
components are auto imported
/> | ||
<div>Username</div> | ||
<TField | ||
v-model="query" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
username is computed in inviteUsername
variable
@@ -32,7 +32,7 @@ export default { | |||
}), | |||
watch: { | |||
value(val) { | |||
const extra = [...val, {}] | |||
const extra = [...val, ''] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check other pages where TInputArray is used, i think this change will break that component on other pages
No description provided.