Skip to content

Commit

Permalink
feat: move search header back to avoid it displaying on mydrafts
Browse files Browse the repository at this point in the history
  • Loading branch information
cmoinier committed Dec 13, 2024
1 parent 3d80b81 commit c2002b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
<div class="absolute top-0 left-0 w-2/3 z-50 pointer-events-none">
<gn-ui-notifications-container></gn-ui-notifications-container>
</div>
<header class="shrink-0 border-b border-gray-300">
<md-editor-search-header></md-editor-search-header>
</header>
<router-outlet></router-outlet>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<header class="shrink-0 border-b border-gray-300">
<md-editor-search-header></md-editor-search-header>
</header>
<main class="bg-white overflow-y-auto">
<div class="flex flex-row items-baseline gap-[8px] px-[32px] py-[20px]">
<ng-container *ngIf="searchText$ | async as searchText; else allRecords">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<header class="shrink-0 border-b border-gray-300">
<md-editor-search-header></md-editor-search-header>
</header>
<main class="bg-white overflow-y-auto" gnUiSearchStateContainer="myRecords">
<div class="flex flex-row items-baseline gap-[8px] px-[32px] py-[20px]">
<ng-container *ngIf="searchText$ | async as searchText; else myRecords">
Expand Down

0 comments on commit c2002b2

Please sign in to comment.