From f8a2fae82b67ed896b8b7c72a6d1758b8b1508bc Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Mon, 9 May 2022 21:29:18 -0400 Subject: [PATCH] [fix] Add missing Create Org button to filters (#1650) --- .../components/organization-filter.component.html | 8 ++++++++ src/scss/vault-filters.scss | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/app/modules/vault-filter/components/organization-filter.component.html b/src/app/modules/vault-filter/components/organization-filter.component.html index 73e2e3baf4..11459bf326 100644 --- a/src/app/modules/vault-filter/components/organization-filter.component.html +++ b/src/app/modules/vault-filter/components/organization-filter.component.html @@ -10,6 +10,14 @@ +
  • + + + + {{ "newOrganization" | i18n }} + + +
  • diff --git a/src/scss/vault-filters.scss b/src/scss/vault-filters.scss index 49acf890ae..e0e38da7e0 100644 --- a/src/scss/vault-filters.scss +++ b/src/scss/vault-filters.scss @@ -95,7 +95,8 @@ display: flex; align-items: center; - button { + button, + a { @extend .no-btn; } @@ -115,6 +116,7 @@ @include themify($themes) { color: themed("linkColor") !important; } + text-decoration: none; } }