diff --git a/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.ts b/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.ts
index 59cfa22e468..23ad97708b4 100644
--- a/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.ts
+++ b/public/app/features/dashboard/components/SaveModals/SaveDashboardAsModalCtrl.ts
@@ -26,9 +26,11 @@ const template = `
enable-create-new="true"
label-class="width-8"
dashboard-id="ctrl.clone.id">
-
-
-
+
+
+
+
+
@@ -44,7 +46,7 @@ export class SaveDashboardAsModalCtrl {
folderId: any;
dismiss: () => void;
isValidFolderSelection = true;
- preseveTags: boolean;
+ copyTags: boolean;
/** @ngInject */
constructor(private dashboardSrv) {
@@ -56,7 +58,7 @@ export class SaveDashboardAsModalCtrl {
this.clone.editable = true;
this.clone.hideControls = false;
this.folderId = dashboard.meta.folderId;
- this.preseveTags = false;
+ this.copyTags = false;
// remove alerts if source dashboard is already persisted
// do not want to create alert dupes
@@ -73,7 +75,7 @@ export class SaveDashboardAsModalCtrl {
}
save() {
- if (!this.preseveTags) {
+ if (!this.copyTags) {
this.clone.tags = [];
}
diff --git a/public/sass/components/_tags.scss b/public/sass/components/_tags.scss
index 692259facb3..4451f2ee8a6 100644
--- a/public/sass/components/_tags.scss
+++ b/public/sass/components/_tags.scss
@@ -21,10 +21,8 @@
border-radius: 3px;
text-shadow: none;
font-size: 13px;
- padding: 3px 6px 1px 6px;
- border-width: 1px;
- border-style: solid;
- box-shadow: 0 0 1px rgba($white, 0.2);
+ padding: 2px 6px 2px 6px;
+ border: 1px solid lighten($purple, 10%);
.icon-tag {
position: relative;