فهرست منبع

use material-symbols-outlined instead of material-symbols-rounded

Yuki Takei 2 سال پیش
والد
کامیت
bc2b0b05ba
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      apps/app/src/components/Bookmarks/BookmarkFolderItem.tsx
  2. 1 1
      apps/app/src/components/TreeItem/SimpleItem.tsx

+ 1 - 1
apps/app/src/components/Bookmarks/BookmarkFolderItem.tsx

@@ -233,7 +233,7 @@ export const BookmarkFolderItem: FC<BookmarkFolderItemProps> = (props: BookmarkF
                 onClick={loadChildFolder}
               >
                 <div className="d-flex justify-content-center">
-                  <span className="material-symbols-rounded">arrow_right</span>
+                  <span className="material-symbols-outlined">arrow_right</span>
                 </div>
               </button>
             )}

+ 1 - 1
apps/app/src/components/TreeItem/SimpleItem.tsx

@@ -247,7 +247,7 @@ export const SimpleItem: FC<SimpleItemProps> = (props) => {
               onClick={onClickLoadChildren}
             >
               <div className="d-flex justify-content-center">
-                <span className="material-symbols-rounded">arrow_right</span>
+                <span className="material-symbols-outlined">arrow_right</span>
               </div>
             </button>
           )}