Browse Source

Updates helper menu order in graph search

main
Keith Daulton 2 years ago
parent
commit
85ea5f8c2d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/webviews/apps/shared/components/search/search-input.ts

+ 3
- 3
src/webviews/apps/shared/components/search/search-input.ts View File

@ -147,6 +147,9 @@ const template = html`
</div>
<div class="helper" id="helper" tabindex="-1" ${ref('helper')}>
<p class="helper-label">Search by</p>
<button class="helper-button" type="button" @click="${(x, _c) => x.handleInsertToken('@me')}">
My changes <small>@me</small>
</button>
<button class="helper-button" type="button" @click="${(x, _c) => x.handleInsertToken('message:')}">
Message <small>message: or =:</small>
</button>
@ -162,9 +165,6 @@ const template = html`
<button class="helper-button" type="button" @click="${(x, _c) => x.handleInsertToken('change:')}">
Change <small>change: or ~:</small>
</button>
<button class="helper-button" type="button" @click="${(x, _c) => x.handleInsertToken('@me')}">
My changes <small>@me</small>
</button>
</div>
</template>
`;

Loading…
Cancel
Save