diff --git a/app/javascript/dashboard/components/ui/Label.vue b/app/javascript/dashboard/components/ui/Label.vue index 14376d530..5415444d2 100644 --- a/app/javascript/dashboard/components/ui/Label.vue +++ b/app/javascript/dashboard/components/ui/Label.vue @@ -52,7 +52,11 @@ export default { }, labelStyle() { if (this.bgColor) { - return { background: this.bgColor, color: this.textColor }; + return { + background: this.bgColor, + color: this.textColor, + border: `1px solid ${this.bgColor}`, + }; } return {}; }, diff --git a/app/javascript/shared/components/ui/dropdown/AddLabel.vue b/app/javascript/shared/components/ui/dropdown/AddLabel.vue index 4702e6805..4254749c1 100644 --- a/app/javascript/shared/components/ui/dropdown/AddLabel.vue +++ b/app/javascript/shared/components/ui/dropdown/AddLabel.vue @@ -1,20 +1,17 @@