* bug fixes, wip

* revert tranlstion
This commit is contained in:
Matt Hill
2025-04-17 21:06:50 -06:00
committed by GitHub
parent 50755d8ba3
commit accef65ede
13 changed files with 68 additions and 40 deletions

View File

@@ -28,7 +28,7 @@
</ng-template>
<!-- license -->
<marketplace-additional-item
(click)="static.emit('License')"
(click)="static.emit('license')"
[data]="pkg.license"
label="License"
icon="@tui.chevron-right"
@@ -36,7 +36,7 @@
/>
<!-- instructions -->
<marketplace-additional-item
(click)="static.emit('Instructions')"
(click)="static.emit('instructions')"
data="Click to view instructions"
label="Instructions"
icon="@tui.chevron-right"

View File

@@ -20,7 +20,7 @@ export class AdditionalComponent {
pkg!: MarketplacePkgBase
@Output()
readonly static = new EventEmitter<'License' | 'Instructions'>()
readonly static = new EventEmitter<'license' | 'instructions'>()
constructor(
readonly copyService: CopyService,