Skip to content

Commit

Permalink
fixed tag and news naming conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
jessewashburn committed Jan 14, 2025
1 parent 3db52ef commit 9efe738
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/news/news-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { dedupeShelfReduce } from '../shared/utils';
export class NewsListComponent implements OnChanges {

@Input() items: any[] = [];
@Input() editSuccessMessage = $localize`News has been updated successfully.`;
@Input() editSuccessMessage = $localize`Message updated successfully.`;
@Input() viewableBy = 'community';
@Input() viewableId: string;
@Input() editable = true;
Expand Down
4 changes: 2 additions & 2 deletions src/app/shared/forms/planet-tag-input-dialog.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ export class PlanetTagInputDialogComponent {
onNext: (data) => {
this.data.initTags();
this.deleteDialog.close();
this.planetMessageService.showMessage($localize`Tag deleted: ${tag.name}`);
this.planetMessageService.showMessage($localize`Collection deleted: ${tag.name}`);
this.resetValidationAndCheck(this.addTagForm);
},
onError: (error) => this.planetMessageService.showAlert($localize`There was a problem deleting this tag.`)
onError: (error) => this.planetMessageService.showAlert($localize`There was a problem deleting this collection.`)
};
}

Expand Down

0 comments on commit 9efe738

Please sign in to comment.