From 74f95f74f561de406b0e6ebcbe864e4820ea89d4 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 24 Sep 2022 15:17:14 +0900 Subject: [PATCH 01/14] =?UTF-8?q?=E6=9C=80=E6=96=B0=E3=81=AE=E3=83=96?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=83=9E=E3=83=BC=E3=82=AF=E3=81=AB=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=83=9C=E3=82=BF=E3=83=B3=E3=82=92=E8=BF=BD=E5=8A=A0?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/api/bookmarks_controller.rb | 2 +- app/views/home/_bookmark.html.slim | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/controllers/api/bookmarks_controller.rb b/app/controllers/api/bookmarks_controller.rb index 67a4840c235..c813486564f 100644 --- a/app/controllers/api/bookmarks_controller.rb +++ b/app/controllers/api/bookmarks_controller.rb @@ -28,7 +28,7 @@ def create def destroy Bookmark.find(params[:id]).destroy - head :no_content + redirect_to root_path end private diff --git a/app/views/home/_bookmark.html.slim b/app/views/home/_bookmark.html.slim index 6a7b7386ef7..1232e7f0096 100644 --- a/app/views/home/_bookmark.html.slim +++ b/app/views/home/_bookmark.html.slim @@ -8,6 +8,8 @@ h2.card-list-item-title__title = link_to bookmark.bookmarkable, class: 'card-list-item-title__link a-text-link' do = bookmark.bookmarkable.title + = link_to api_bookmark_path(bookmark.id), method: :delete, class: 'a-button is-md' do + | 削除 .card-list-item__row .card-list-item-meta .card-list-item-meta__items From 807be29e9355c3996cb9f5abe58caff2facac929 Mon Sep 17 00:00:00 2001 From: choco Date: Sun, 25 Sep 2022 14:07:07 +0900 Subject: [PATCH 02/14] =?UTF-8?q?=E6=97=A2=E5=AD=98=E3=83=86=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/integration/api/bookmarks_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/api/bookmarks_test.rb b/test/integration/api/bookmarks_test.rb index 3a115d5af30..96ae439d4b3 100644 --- a/test/integration/api/bookmarks_test.rb +++ b/test/integration/api/bookmarks_test.rb @@ -42,7 +42,7 @@ class API::BookmarksTest < ActionDispatch::IntegrationTest token = create_token('komagata', 'testtest') delete api_bookmark_path(bookmark.id, format: :json), headers: { 'Authorization' => "Bearer #{token}" } - assert_response :no_content + assert_response :found end test 'POST question' do From d0af32b263a370cc220dc662c7da67dfd0c8fb77 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 14:51:08 +0900 Subject: [PATCH 03/14] =?UTF-8?q?api=E9=85=8D=E4=B8=8B=E3=81=AFVue?= =?UTF-8?q?=E3=81=8B=E3=82=89=E3=81=AE=E5=AE=9F=E8=A1=8C=E3=82=92=E6=83=B3?= =?UTF-8?q?=E5=AE=9A=E3=81=97=E3=81=A6=E3=81=84=E3=82=8B=E3=81=9F=E3=82=81?= =?UTF-8?q?=E3=80=81=E6=96=B0=E8=A6=8F=E3=81=ABroutes=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/api/bookmarks_controller.rb | 2 +- app/controllers/current_user/bookmarks_controller.rb | 5 +++++ app/views/home/_bookmark.html.slim | 2 +- config/routes/current_user.rb | 2 +- test/integration/api/bookmarks_test.rb | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/app/controllers/api/bookmarks_controller.rb b/app/controllers/api/bookmarks_controller.rb index c813486564f..67a4840c235 100644 --- a/app/controllers/api/bookmarks_controller.rb +++ b/app/controllers/api/bookmarks_controller.rb @@ -28,7 +28,7 @@ def create def destroy Bookmark.find(params[:id]).destroy - redirect_to root_path + head :no_content end private diff --git a/app/controllers/current_user/bookmarks_controller.rb b/app/controllers/current_user/bookmarks_controller.rb index a3b7aa0a744..33c243ea694 100644 --- a/app/controllers/current_user/bookmarks_controller.rb +++ b/app/controllers/current_user/bookmarks_controller.rb @@ -6,4 +6,9 @@ class CurrentUser::BookmarksController < ApplicationController def index @user = current_user end + + def destroy + Bookmark.find(params[:id]).destroy + redirect_to root_path, notice: 'Bookmarkを削除しました。' + end end diff --git a/app/views/home/_bookmark.html.slim b/app/views/home/_bookmark.html.slim index 1232e7f0096..1e3a10fc5ef 100644 --- a/app/views/home/_bookmark.html.slim +++ b/app/views/home/_bookmark.html.slim @@ -8,7 +8,7 @@ h2.card-list-item-title__title = link_to bookmark.bookmarkable, class: 'card-list-item-title__link a-text-link' do = bookmark.bookmarkable.title - = link_to api_bookmark_path(bookmark.id), method: :delete, class: 'a-button is-md' do + = link_to current_user_bookmark_path(bookmark.id), method: :delete, class: 'a-button is-md' do | 削除 .card-list-item__row .card-list-item-meta diff --git a/config/routes/current_user.rb b/config/routes/current_user.rb index dda7d75dc03..ac7e86d9f7e 100644 --- a/config/routes/current_user.rb +++ b/config/routes/current_user.rb @@ -5,6 +5,6 @@ resources :reports, only: %i(index) resources :products, only: %i(index) resources :watches, only: %i(index) - resources :bookmarks, only: %i(index) + resources :bookmarks, only: %i(index destroy) end end diff --git a/test/integration/api/bookmarks_test.rb b/test/integration/api/bookmarks_test.rb index 96ae439d4b3..3a115d5af30 100644 --- a/test/integration/api/bookmarks_test.rb +++ b/test/integration/api/bookmarks_test.rb @@ -42,7 +42,7 @@ class API::BookmarksTest < ActionDispatch::IntegrationTest token = create_token('komagata', 'testtest') delete api_bookmark_path(bookmark.id, format: :json), headers: { 'Authorization' => "Bearer #{token}" } - assert_response :found + assert_response :no_content end test 'POST question' do From 9fd533eaae873e2dba3c7fe4cdfdc356ae4b2621 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 16:43:43 +0900 Subject: [PATCH 04/14] =?UTF-8?q?=E6=9C=80=E6=96=B0=E3=81=AE=E3=83=96?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=83=9E=E3=83=BC=E3=82=AF=E3=81=AE=E7=B7=A8?= =?UTF-8?q?=E9=9B=86=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=8CON=E3=81=AE?= =?UTF-8?q?=E5=A0=B4=E5=90=88=E3=81=AE=E3=81=BF=E3=80=81=E5=90=84=E3=83=96?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=83=9E=E3=83=BC=E3=82=AF=E3=81=AB=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=83=9C=E3=82=BF=E3=83=B3=E3=81=8C=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=81=97?= =?UTF-8?q?=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/javascript/bookmarks-edit-button.js | 21 +++++++++++++++++++++ app/javascript/packs/application.js | 2 ++ app/views/home/_bookmark.html.slim | 2 +- app/views/home/_bookmarks.html.slim | 1 + 4 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 app/javascript/bookmarks-edit-button.js diff --git a/app/javascript/bookmarks-edit-button.js b/app/javascript/bookmarks-edit-button.js new file mode 100644 index 00000000000..ebd878d8c6c --- /dev/null +++ b/app/javascript/bookmarks-edit-button.js @@ -0,0 +1,21 @@ +document.addEventListener('DOMContentLoaded', () => { + const bookMarksEditButton = document.getElementById('bookmark_edit') + const bookmarkDeleteButton = document.getElementsByClassName('bookmark-delete-button') + if (bookMarksEditButton && bookmarkDeleteButton) { + for (let i = 0; i < bookmarkDeleteButton.length; i++) { + bookmarkDeleteButton[i].style.visibility = 'hidden' + } + } + + bookMarksEditButton.addEventListener('click', () => { + if (bookMarksEditButton.checked) { + for (let i = 0; i < bookmarkDeleteButton.length; i++) { + bookmarkDeleteButton[i].style.visibility = 'visible' + } + } else { + for (let i = 0; i < bookmarkDeleteButton.length; i++) { + bookmarkDeleteButton[i].style.visibility = 'hidden' + } + } + }) +}) diff --git a/app/javascript/packs/application.js b/app/javascript/packs/application.js index 486d8783c31..7609945f2c5 100644 --- a/app/javascript/packs/application.js +++ b/app/javascript/packs/application.js @@ -59,6 +59,8 @@ import '../training-info-toggler.js' import '../company-products.js' import '../welcome_message_for_adviser.js' import '../stylesheets/application.css' +import '../regular-events.js' +import '../bookmarks-edit-button.js' import VueMounter from '../VueMounter.js' import Announcements from '../components/announcements.vue' diff --git a/app/views/home/_bookmark.html.slim b/app/views/home/_bookmark.html.slim index 1e3a10fc5ef..63877569a00 100644 --- a/app/views/home/_bookmark.html.slim +++ b/app/views/home/_bookmark.html.slim @@ -8,7 +8,7 @@ h2.card-list-item-title__title = link_to bookmark.bookmarkable, class: 'card-list-item-title__link a-text-link' do = bookmark.bookmarkable.title - = link_to current_user_bookmark_path(bookmark.id), method: :delete, class: 'a-button is-md' do + = link_to current_user_bookmark_path(bookmark.id) ,method: :delete, class: 'bookmark-delete-button a-button is-md' do | 削除 .card-list-item__row .card-list-item-meta diff --git a/app/views/home/_bookmarks.html.slim b/app/views/home/_bookmarks.html.slim index 459a583c804..7ded3ce1ba6 100644 --- a/app/views/home/_bookmarks.html.slim +++ b/app/views/home/_bookmarks.html.slim @@ -2,6 +2,7 @@ header.card-header.is-sm h2.card-header__title | 最新のブックマーク + = check_box_tag :bookmark_edit, true, false .card-list = render partial: 'bookmark', collection: @bookmarks footer.card-footer From 7822c774280c42d9f508ee383064c5a320959101 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 17:04:11 +0900 Subject: [PATCH 05/14] =?UTF-8?q?visibility=E3=83=97=E3=83=AD=E3=83=91?= =?UTF-8?q?=E3=83=86=E3=82=A3=E3=81=AF=E6=8F=8F=E5=86=99=E9=80=9F=E5=BA=A6?= =?UTF-8?q?=E3=81=8C=E9=81=85=E3=81=84=E3=81=9F=E3=82=81=E3=80=81display?= =?UTF-8?q?=E3=81=AB=E5=A4=89=E6=9B=B4=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/javascript/bookmarks-edit-button.js | 6 +++--- app/views/home/_bookmarks.html.slim | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/javascript/bookmarks-edit-button.js b/app/javascript/bookmarks-edit-button.js index ebd878d8c6c..ee133b81028 100644 --- a/app/javascript/bookmarks-edit-button.js +++ b/app/javascript/bookmarks-edit-button.js @@ -3,18 +3,18 @@ document.addEventListener('DOMContentLoaded', () => { const bookmarkDeleteButton = document.getElementsByClassName('bookmark-delete-button') if (bookMarksEditButton && bookmarkDeleteButton) { for (let i = 0; i < bookmarkDeleteButton.length; i++) { - bookmarkDeleteButton[i].style.visibility = 'hidden' + bookmarkDeleteButton[i].style.display = 'none' } } bookMarksEditButton.addEventListener('click', () => { if (bookMarksEditButton.checked) { for (let i = 0; i < bookmarkDeleteButton.length; i++) { - bookmarkDeleteButton[i].style.visibility = 'visible' + bookmarkDeleteButton[i].style.display = 'block' } } else { for (let i = 0; i < bookmarkDeleteButton.length; i++) { - bookmarkDeleteButton[i].style.visibility = 'hidden' + bookmarkDeleteButton[i].style.display = 'none' } } }) diff --git a/app/views/home/_bookmarks.html.slim b/app/views/home/_bookmarks.html.slim index 7ded3ce1ba6..35f53a30ca0 100644 --- a/app/views/home/_bookmarks.html.slim +++ b/app/views/home/_bookmarks.html.slim @@ -2,7 +2,9 @@ header.card-header.is-sm h2.card-header__title | 最新のブックマーク - = check_box_tag :bookmark_edit, true, false + label + |編集 + input#bookmark_edit(type='checkbox') .card-list = render partial: 'bookmark', collection: @bookmarks footer.card-footer From 9fd3529c205288460c0faaf477f15904090949a9 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 17:07:52 +0900 Subject: [PATCH 06/14] =?UTF-8?q?prettier=E3=81=AE=E8=AD=A6=E5=91=8A?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/javascript/bookmarks-edit-button.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/bookmarks-edit-button.js b/app/javascript/bookmarks-edit-button.js index ee133b81028..6cec3d9de25 100644 --- a/app/javascript/bookmarks-edit-button.js +++ b/app/javascript/bookmarks-edit-button.js @@ -1,6 +1,8 @@ document.addEventListener('DOMContentLoaded', () => { const bookMarksEditButton = document.getElementById('bookmark_edit') - const bookmarkDeleteButton = document.getElementsByClassName('bookmark-delete-button') + const bookmarkDeleteButton = document.getElementsByClassName( + 'bookmark-delete-button' + ) if (bookMarksEditButton && bookmarkDeleteButton) { for (let i = 0; i < bookmarkDeleteButton.length; i++) { bookmarkDeleteButton[i].style.display = 'none' From 0352fa9669be55aa456cd854b61a1b16bbcd28c2 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 17:18:09 +0900 Subject: [PATCH 07/14] =?UTF-8?q?=E3=82=AB=E3=83=B3=E3=83=9E=E3=81=AE?= =?UTF-8?q?=E5=BE=8C=E3=81=AB=E3=82=B9=E3=83=9A=E3=83=BC=E3=82=B9=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/home/_bookmark.html.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/home/_bookmark.html.slim b/app/views/home/_bookmark.html.slim index 63877569a00..c3e4a8ac008 100644 --- a/app/views/home/_bookmark.html.slim +++ b/app/views/home/_bookmark.html.slim @@ -8,7 +8,7 @@ h2.card-list-item-title__title = link_to bookmark.bookmarkable, class: 'card-list-item-title__link a-text-link' do = bookmark.bookmarkable.title - = link_to current_user_bookmark_path(bookmark.id) ,method: :delete, class: 'bookmark-delete-button a-button is-md' do + = link_to current_user_bookmark_path(bookmark.id) , method: :delete, class: 'bookmark-delete-button a-button is-md' do | 削除 .card-list-item__row .card-list-item-meta From 0d7dbd39887a8240f07cafa232f01bb23c59a380 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 17:30:19 +0900 Subject: [PATCH 08/14] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E3=82=B9?= =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B9=E3=82=92=E5=89=8A=E9=99=A4=E3=81=97?= =?UTF-8?q?=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/home/_bookmark.html.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/home/_bookmark.html.slim b/app/views/home/_bookmark.html.slim index c3e4a8ac008..4ee2c9cc4f8 100644 --- a/app/views/home/_bookmark.html.slim +++ b/app/views/home/_bookmark.html.slim @@ -8,7 +8,7 @@ h2.card-list-item-title__title = link_to bookmark.bookmarkable, class: 'card-list-item-title__link a-text-link' do = bookmark.bookmarkable.title - = link_to current_user_bookmark_path(bookmark.id) , method: :delete, class: 'bookmark-delete-button a-button is-md' do + = link_to current_user_bookmark_path(bookmark.id), method: :delete, class: 'bookmark-delete-button a-button is-md' do | 削除 .card-list-item__row .card-list-item-meta From d33a771642ea90044954ec6151db4b4b6107baa4 Mon Sep 17 00:00:00 2001 From: choco Date: Sat, 1 Oct 2022 20:34:24 +0900 Subject: [PATCH 09/14] =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E3=82=B3?= =?UTF-8?q?=E3=83=BC=E3=83=89=E3=82=92=E8=BF=BD=E5=8A=A0=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/system/home_test.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/test/system/home_test.rb b/test/system/home_test.rb index 168c4f84b18..4a196e5c450 100644 --- a/test/system/home_test.rb +++ b/test/system/home_test.rb @@ -361,4 +361,21 @@ class HomeTest < ApplicationSystemTestCase visit_with_auth '/', 'kimura' assert_no_selector 'h2.card-header__title', text: '研修生' end + + test 'delete bookmark for latest bookmarks on dashboard' do + visit_with_auth '/', 'kimura' + + reports = %i[report68 report69 report70 report71] + reports.each do |report| + visit "/reports/#{reports(report).id}" + find('#bookmark-button').click + end + assert_text 'Bookmarkしました!' + + visit '/' + find('#bookmark_edit').click + first('.bookmark-delete-button').click + assert_text 'Bookmarkを削除しました。' + assert_no_text '名前の長いメンター用' + end end From 515d105b1480f910476e5fa02cb14da9cae97234 Mon Sep 17 00:00:00 2001 From: choco Date: Tue, 4 Oct 2022 23:13:33 +0900 Subject: [PATCH 10/14] =?UTF-8?q?=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF?= =?UTF-8?q?=E3=83=9C=E3=83=83=E3=82=AF=E3=82=B9=E3=82=92=E3=82=AF=E3=83=AA?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=81=99=E3=82=8B=E3=83=A1=E3=82=BD=E3=83=83?= =?UTF-8?q?=E3=83=89=E3=82=92Capybara=E3=81=AE=E3=83=A1=E3=82=BD=E3=83=83?= =?UTF-8?q?=E3=83=89=E3=81=AB=E5=A4=89=E6=9B=B4=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/system/home_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/home_test.rb b/test/system/home_test.rb index 4a196e5c450..fa4034320ce 100644 --- a/test/system/home_test.rb +++ b/test/system/home_test.rb @@ -373,7 +373,7 @@ class HomeTest < ApplicationSystemTestCase assert_text 'Bookmarkしました!' visit '/' - find('#bookmark_edit').click + check '編集' first('.bookmark-delete-button').click assert_text 'Bookmarkを削除しました。' assert_no_text '名前の長いメンター用' From be0aa6aaa5742155fdd01c38b542ef0a555c0f12 Mon Sep 17 00:00:00 2001 From: teppei machida Date: Thu, 13 Oct 2022 13:27:50 +0900 Subject: [PATCH 11/14] =?UTF-8?q?=E3=83=96=E3=83=83=E3=82=AF=E3=83=9E?= =?UTF-8?q?=E3=83=BC=E3=82=AF=E5=89=8A=E9=99=A4=E3=81=AE=E3=83=87=E3=82=B6?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/assets/stylesheets/atoms/_a-form-label.sass | 3 +++ .../stylesheets/shared/blocks/card/_card-header.sass | 3 +++ app/javascript/bookmark-button.vue | 2 +- app/javascript/bookmarks-edit-button.js | 2 +- app/views/home/_bookmark.html.slim | 5 +++-- app/views/home/_bookmarks.html.slim | 9 ++++++--- test/system/home_test.rb | 2 +- 7 files changed, 18 insertions(+), 8 deletions(-) diff --git a/app/assets/stylesheets/atoms/_a-form-label.sass b/app/assets/stylesheets/atoms/_a-form-label.sass index 133036d874c..0ebe92efc3d 100644 --- a/app/assets/stylesheets/atoms/_a-form-label.sass +++ b/app/assets/stylesheets/atoms/_a-form-label.sass @@ -9,6 +9,9 @@ transform: scale(.7) &.is-sm +text-block(.75rem 1.5) + &.is-inline + margin-bottom: 0 + margin-right: .5rem .form-item__label-checkbox +position(relative) diff --git a/app/assets/stylesheets/shared/blocks/card/_card-header.sass b/app/assets/stylesheets/shared/blocks/card/_card-header.sass index 2d136e745d7..6ff9ac16212 100644 --- a/app/assets/stylesheets/shared/blocks/card/_card-header.sass +++ b/app/assets/stylesheets/shared/blocks/card/_card-header.sass @@ -41,3 +41,6 @@ +text-block(.8125rem 1.4) +media-breakpoint-down(sm) font-size: .75rem + +.card-header__action + display: flex diff --git a/app/javascript/bookmark-button.vue b/app/javascript/bookmark-button.vue index 555632f5c65..c4e1e24e7f7 100644 --- a/app/javascript/bookmark-button.vue +++ b/app/javascript/bookmark-button.vue @@ -1,6 +1,6 @@