diff --git a/frontend/fontello/config.json b/frontend/fontello/config.json index 988b466..a3ec408 100644 --- a/frontend/fontello/config.json +++ b/frontend/fontello/config.json @@ -426,6 +426,20 @@ "chevron-left" ] }, + { + "uid": "b1f680726c5ff5a4b55a4e2701aaedd6", + "css": "content-save-outline", + "code": 59422, + "src": "custom_icons", + "selected": true, + "svg": { + "path": "M709 125H209Q173.8 125 149.4 149.4T125 209V791Q125 826.2 149.4 850.6T209 875H791Q826.2 875 850.6 850.6T875 791V291ZM791 791H209V209H673.8L791 326.2V791ZM500 500Q447.3 500 411.1 536.1T375 625 411.1 713.9 500 750 588.9 713.9 625 625 588.9 536.1 500 500ZM250 250H625V416H250V250Z", + "width": 1000 + }, + "search": [ + "content-save-outline" + ] + }, { "uid": "f4ad3f6d071a0bfb3a8452b514ed0892", "css": "vector-square", @@ -29266,20 +29280,6 @@ "comment-question" ] }, - { - "uid": "b1f680726c5ff5a4b55a4e2701aaedd6", - "css": "content-save-outline", - "code": 985112, - "src": "custom_icons", - "selected": false, - "svg": { - "path": "M709 125H209Q173.8 125 149.4 149.4T125 209V791Q125 826.2 149.4 850.6T209 875H791Q826.2 875 850.6 850.6T875 791V291ZM791 791H209V209H673.8L791 326.2V791ZM500 500Q447.3 500 411.1 536.1T375 625 411.1 713.9 500 750 588.9 713.9 625 625 588.9 536.1 500 500ZM250 250H625V416H250V250Z", - "width": 1000 - }, - "search": [ - "content-save-outline" - ] - }, { "uid": "2d26a0691a6419907d872e549e8c9bc9", "css": "delete-restore", diff --git a/frontend/src/assets/icons/fontello.css b/frontend/src/assets/icons/fontello.css index afd280d..63b6508 100644 --- a/frontend/src/assets/icons/fontello.css +++ b/frontend/src/assets/icons/fontello.css @@ -39,7 +39,7 @@ /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } - + .mdi-view-dashboard-variant-outline:before { content: '\e800'; } /* '' */ .mdi-format-list-bulleted-square:before { content: '\e801'; } /* '' */ .mdi-newspaper-variant-outline:before { content: '\e802'; } /* '' */ @@ -70,3 +70,4 @@ .mdi-account-off-outline:before { content: '\e81b'; } /* '' */ .mdi-chevron-right:before { content: '\e81c'; } /* '' */ .mdi-chevron-left:before { content: '\e81d'; } /* '' */ +.mdi-content-save-outline:before { content: '\e81e'; } /* '' */ diff --git a/frontend/src/assets/icons/fontello.woff2 b/frontend/src/assets/icons/fontello.woff2 index aa6d12b..fa4a81a 100644 Binary files a/frontend/src/assets/icons/fontello.woff2 and b/frontend/src/assets/icons/fontello.woff2 differ diff --git a/frontend/src/views/Campaign.vue b/frontend/src/views/Campaign.vue index 3de8fb5..12ecd22 100644 --- a/frontend/src/views/Campaign.vue +++ b/frontend/src/views/Campaign.vue @@ -71,7 +71,7 @@ + ellipsis icon="tag-outline" placeholder="Tags">
diff --git a/media.go b/media.go index 20723c9..7f7c7da 100644 --- a/media.go +++ b/media.go @@ -112,7 +112,7 @@ func handleUploadMedia(c echo.Context) error { func handleGetMedia(c echo.Context) error { var ( app = c.Get("app").(*App) - out []media.Media + out = []media.Media{} ) if err := app.queries.GetMedia.Select(&out); err != nil {