Skip to content

feat: change some fields name in basic details step #4666

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

Merged
merged 1 commit into from
Jul 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/templates/components/forms/wizard/basic-details-step.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<form class="ui form {{if this.isLoading 'loading'}}" autocomplete="off" {{action 'moveForward' on='submit' preventDefault=true}} novalidate>
<div class="field">
<label class="required" for="name">{{t 'Name'}}</label>
<label class="required" for="name">{{t 'Event Name'}}</label>
<Input
@type="text"
@id="name"
Expand Down Expand Up @@ -125,20 +125,20 @@
@type="checkbox"
@checked={{this.data.event.hasOwnerInfo}}
@id="add_owner_information" />
<label for="add_owner_information">{{t 'Add owner information'}}</label>
<label for="add_owner_information">{{t 'Add Organizer or Group Information'}}</label>
</div>
</div>

{{#if this.data.event.hasOwnerInfo}}
<div class="field">
<label for="owner_name">{{t 'Owner Name'}}</label>
<label for="owner_name">{{t 'Organizer or Group Name'}}</label>
<Input
@type="text"
@id="owner_name"
@value={{this.data.event.ownerName}} />
</div>
<div class="field">
<label for="owner_description">{{t 'Owner Description'}}</label>
<label for="owner_description">{{t 'About the Organizer or Group'}}</label>
<Widgets::Forms::RichTextEditor
@id="owner_description"
@value={{this.data.event.ownerDescription}} />
Expand Down