Skip to content

Commit ef3ffc2

Browse files
Fixed Packaging error
The openSubmitTextModal function had an unnecessary parameter (textId:string). It was causing the npm run dist to fail on VSTS.
1 parent 834f134 commit ef3ffc2

File tree

1 file changed

+1
-1
lines changed
  • web/src/signalr-web/SignalRMiddleware/EventApp/src/app/components/items

1 file changed

+1
-1
lines changed

web/src/signalr-web/SignalRMiddleware/EventApp/src/app/components/items/item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ export class ItemComponent {
562562

563563
}
564564

565-
openSubmitTextModal(content,textId:string) {
565+
openSubmitTextModal(content) {
566566
this.inputText = ""
567567
this.modalService.open(content).result.then((result) => {
568568
this.closeResult = `Closed with: ${result}`;

0 commit comments

Comments
 (0)