Skip to content

Commit

Permalink
[ng] Change file names to follow angular convention
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed Sep 17, 2024
1 parent 2b68734 commit d237b89
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
3 changes: 2 additions & 1 deletion firebird-ng/src/app/main-display/main-display.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,8 @@ export class MainDisplayComponent implements OnInit {
//this.buildEventDataFromJSON(this.eventsArray[0]);
this.eventDisplay.parsePhoenixEvents(data);
console.log(this);
console.log(`Loading event: ${data}`);
console.log(`Loading event: `);
console.log(data);
};
worker.postMessage(eventConfig.eventFile);
} else {
Expand Down
4 changes: 0 additions & 4 deletions firebird-ng/src/app/painters/PointHitPainter.ts

This file was deleted.

Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface IEntryComponentRenderer {
interface ComponentPainter {
createFromObject(source: any): any;
toModel(source: any): any;
renderAtTime(source: any): any;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

interface Painter {
interface EventPainter {
sendEmail(address: string, content: string): void;
}

0 comments on commit d237b89

Please sign in to comment.