Shun Miyazawa 2 tahun lalu
induk
melakukan
24a78d5ffe

+ 1 - 1
apps/app/src/features/search/client/components/SearchButtons.tsx

@@ -47,7 +47,7 @@ export const SearchButtons = (props: SearchButtonsProps): JSX.Element => {
         )}
 
         <SearchButton onClick={() => {}}>
-          <code>{currentPagePath}</code>
+          <code>prefix: {currentPagePath}</code>
           <span className="ms-2">{searchKeyword}</span>
           <div className="ms-auto">
             <span>{t('search_buttons.only_children_of_this_tree')}</span>

+ 1 - 1
apps/app/src/features/search/client/components/SearchHelp.tsx

@@ -10,7 +10,7 @@ export const SearchHelp = (): JSX.Element => {
 
   return (
     <>
-      <button type="button" className="btn border-0 text-muted d-flex justify-content-center align-items-center mb-2 ps-1" onClick={() => setIsOpen(!isOpen)}>
+      <button type="button" className="btn border-0 text-muted d-flex justify-content-center align-items-center  ps-1" onClick={() => setIsOpen(!isOpen)}>
         <span className="material-symbols-outlined me-2">help</span>
         { t('search_help.title') }
         <span className="material-symbols-outlined ms-2">{isOpen ? 'expand_less' : 'expand_more'}</span>