Просмотр исходного кода

fix: Dashboard permissions now shows correctly, fixes #13201

Torkel Ödegaard 7 лет назад
Родитель
Сommit
9cfe2a7f5c
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      public/app/features/dashboard/folder_picker/folder_picker.ts

+ 2 - 1
public/app/features/dashboard/folder_picker/folder_picker.ts

@@ -131,6 +131,7 @@ export class FolderPickerCtrl {
   private loadInitialValue() {
   private loadInitialValue() {
     const resetFolder = { text: this.initialTitle, value: null };
     const resetFolder = { text: this.initialTitle, value: null };
     const rootFolder = { text: this.rootName, value: 0 };
     const rootFolder = { text: this.rootName, value: 0 };
+
     this.getOptions('').then(result => {
     this.getOptions('').then(result => {
       let folder;
       let folder;
       if (this.initialFolderId) {
       if (this.initialFolderId) {
@@ -150,7 +151,7 @@ export class FolderPickerCtrl {
       this.folder = folder;
       this.folder = folder;
 
 
       // if this is not the same as our initial value notify parent
       // if this is not the same as our initial value notify parent
-      if (this.folder.id !== this.initialFolderId) {
+      if (this.folder.value !== this.initialFolderId) {
         this.onChange({ $folder: { id: this.folder.value, title: this.folder.text } });
         this.onChange({ $folder: { id: this.folder.value, title: this.folder.text } });
       }
       }
     });
     });