1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-26 22:39:36 +02:00

Add custom icons to bookmarks (#5)

* allow custom icons for bookmarks

* update docker-image action to tag images based on source branch
This commit is contained in:
François Darveau 2021-06-27 15:17:23 -04:00 committed by François Darveau
parent 28ea50676a
commit c0d3ea2c4a
8 changed files with 77 additions and 91 deletions

View file

@ -50,10 +50,10 @@ const Bookmarks = (props: ComponentProps): JSX.Element => {
updatedAt: new Date(),
});
const [bookmarkInUpdate, setBookmarkInUpdate] = useState<Bookmark>({
name: "",
url: "",
name: "string",
url: "string",
categoryId: -1,
icon: "",
icon: "string",
isPinned: false,
orderId: 0,
id: 0,
@ -113,10 +113,7 @@ const Bookmarks = (props: ComponentProps): JSX.Element => {
<Container>
<Modal isOpen={modalIsOpen} setIsOpen={toggleModal}>
{!isInUpdate ? (
<BookmarkForm
modalHandler={toggleModal}
contentType={formContentType}
/>
<BookmarkForm modalHandler={toggleModal} contentType={formContentType} />
) : formContentType === ContentType.category ? (
<BookmarkForm
modalHandler={toggleModal}