Add merge ops (not yet import py api)
This commit is contained in:
parent
a6a7397dce
commit
850c483d5b
13 changed files with 220 additions and 1676 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -1,11 +1,16 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { MergeComponent } from '../merge/merge.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-changelog',
|
||||
standalone: true,
|
||||
templateUrl: './changelog.component.html',
|
||||
styleUrls: ['./changelog.component.css']
|
||||
styleUrls: ['./changelog.component.css'],
|
||||
imports: [MergeComponent]
|
||||
})
|
||||
export class ChangelogComponent {
|
||||
|
||||
fetchLog(){
|
||||
// TODO: Fetch changelog.html
|
||||
fetch("/changelog")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue