(container: HTMLElement, key: string, value: string)
| 437 | } |
| 438 | |
| 439 | private createMetadataItem(container: HTMLElement, key: string, value: string): void { |
| 440 | const item = container.createDiv("metadata-item"); |
| 441 | item.createSpan("metadata-key").textContent = `${key} `; |
| 442 | item.createSpan("metadata-value").textContent = value; |
| 443 | } |
| 444 | |
| 445 | async handleSave(): Promise<void> { |
| 446 | if (!this.validateForm()) { |
no outgoing calls
no test coverage detected