Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
#216 fix aot
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Shakhov committed Jul 12, 2017
1 parent 084865a commit e54a58f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/tags/tags.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
[query]="query"
(onNewTag)="addTag($event)"
(onTagEdit)="editTag($event)"
(onTagDelete)="removeTag($event)"
(onTagDelete)="removeTag()"
></cs-tag-category>

<cs-no-results *ngIf="!visibleCategories.length"></cs-no-results>
2 changes: 1 addition & 1 deletion src/app/tags/tags.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class TagsComponent implements OnChanges {
]
})
.switchMap(res => res.onHide())
.subscribe(() => this.onTagUpdated.emit(),);
.subscribe(() => this.onTagUpdated.emit());
}

public removeTag(): void {
Expand Down
2 changes: 1 addition & 1 deletion src/app/vm/vm-sidebar/tags/vm-tags.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<cs-tags
[entity]="vm"
(onTagUpdated)="updateVm($event)"
(onTagUpdated)="updateVm()"
></cs-tags>
2 changes: 1 addition & 1 deletion src/app/vm/vm.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ import { SnapshotsComponent } from './vm-sidebar/storage-detail/volume/snapshot/
import { VolumeDetailsComponent } from './vm-sidebar/storage-detail/volume/volume-details/volume-details.component';
import { SshKeypairResetComponent } from './vm-sidebar/ssh/ssh-keypair-reset.component';
import { TagsModule } from '../tags/tags.module';
import { VmTagsComponent } from './vm-sidebar/tags/vm-tags.component';
import { AffinityGroupSelectorComponent } from './vm-sidebar/affinity-group-selector/affinity-group-selector.component';
import { VmTagsComponent } from './vm-sidebar/tags/vm-tags.component';


@NgModule({
Expand Down

0 comments on commit e54a58f

Please sign in to comment.