From b668ca39433110f85fa3a08b863a0ea96ce65e97 Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Wed, 10 May 2023 15:40:57 +0800 Subject: [PATCH] Fixed newsletter clicks not updating in Safari refs https://github.com/TryGhost/Team/issues/2619 - blur event occurs before mouseup event is called, so when the update button was clicked, the update function has never been called in Safari - this replaces the mouseup with mousedown which is called before the blur event, so the links are updated properly --- ghost/admin/app/components/posts/links-table.hbs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghost/admin/app/components/posts/links-table.hbs b/ghost/admin/app/components/posts/links-table.hbs index 09d43475d3..f2bc38c249 100644 --- a/ghost/admin/app/components/posts/links-table.hbs +++ b/ghost/admin/app/components/posts/links-table.hbs @@ -45,7 +45,7 @@