Skip to content

Commit

Permalink
Remove logs, update DocForm on-inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdaley committed Sep 22, 2023
1 parent b352727 commit 152843a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion web/app/components/new/doc-form.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<New::ObjectTypeDropdown @selected="Document" />
<form
{{! TODO: check if "change"/"input" actions work }}
{{!-- {{on "input" this.updateForm}} --}}
{{did-insert this.registerForm}}
{{on "submit" this.submit}}
class="mb-10"
Expand All @@ -24,6 +23,7 @@
@value={{this.title}}
@type="text"
name="title"
{{on "input" this.updateForm}}
as |F|
>
<F.Label class="relative">
Expand All @@ -38,6 +38,7 @@
@value={{this.summary}}
name="summary"
rows="3"
{{on "input" this.updateForm}}
as |F|
>
<F.Label>Summary</F.Label>
Expand Down
3 changes: 0 additions & 3 deletions web/app/components/notification.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<div class="notifications-container">
{{#each this.flashMessages.queue as |flash|}}
{{log "flash" flash}}
<FlashMessage
data-test-flash-notification
{{! @glint-ignore - ember-cli-flash has missing types }}
Expand All @@ -9,8 +8,6 @@
class="notification"
as |_component _flash close|
>
{{log "_component" _component}}
{{log "_flash" _flash}}
<Hds::Toast
@color={{flash.type}}
@icon={{flash.icon}}
Expand Down
1 change: 0 additions & 1 deletion web/app/components/project/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<Header::Nav />
</header>

{{log "@project" @project}}
<div class="x-container -mt-4">
<div class="flex items-center justify-between">
{{! TODO: component-ize this button style }}
Expand Down

0 comments on commit 152843a

Please sign in to comment.