We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Original
{{#ct-input classNames="flex-grow" type="time" label="Arrive between" clearable=(not readOnly) disabled=readOnly defaultDate=(luxon hour=8 minute=0) placeholder="Now" date=stop.timeWindowEarliestTime onClear=(pipe (action (mut stop.timeWindowEarliestTime) null) (ct-orm "saveStopOfPlan" stop) ) onSave=(pipe (action (mut stop.timeWindowEarliestTime)) (ct-orm "saveStopOfPlan" stop) ) as |input| }}
Transformation
<CtInput @classNames="flex-grow" @type="time" @label="Arrive between" @clearable={{not readOnly}} @disabled={{readOnly}} @defaultDate=<Luxon @hour={{8}} @minute={{0}} /> @placeholder="Now" @date={{stop.timeWindowEarliestTime}} @onClear={{pipe (action (mut stop.timeWindowEarliestTime) ) (ct-orm "saveStopOfPlan" stop)}} @onSave={{pipe (action (mut stop.timeWindowEarliestTime)) (ct-orm "saveStopOfPlan" stop) }} as |input|>
As you can see the issue here is with defaultDate
defaultDate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original
Transformation
As you can see the issue here is with
defaultDate
The text was updated successfully, but these errors were encountered: