From 75d54e3335bd516ff16c21c3898097a901c81d63 Mon Sep 17 00:00:00 2001 From: Kyle Zhao Date: Thu, 3 Oct 2019 22:48:17 -0700 Subject: [PATCH] UX: Add "Drafts" to quick access profile tab. (#8155) --- .../discourse/widgets/quick-access-profile.js.es6 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/javascripts/discourse/widgets/quick-access-profile.js.es6 b/app/assets/javascripts/discourse/widgets/quick-access-profile.js.es6 index b74054e243a..4fc9140b3f2 100644 --- a/app/assets/javascripts/discourse/widgets/quick-access-profile.js.es6 +++ b/app/assets/javascripts/discourse/widgets/quick-access-profile.js.es6 @@ -45,6 +45,11 @@ createWidgetFrom(QuickAccessPanel, "quick-access-profile", { href: `${this.attrs.path}/messages`, content: I18n.t("user.private_messages") }, + { + icon: "pencil", + href: `${this.attrs.path}/activity/drafts`, + content: I18n.t("user_action_groups.15") + }, { icon: "cog", href: `${this.attrs.path}/preferences`,