Skip to content

Commit

Permalink
chore: fix service
Browse files Browse the repository at this point in the history
  • Loading branch information
yanmariomenev committed May 10, 2024
1 parent 8e72b77 commit 4489937
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Expand Up @@ -31,13 +31,13 @@ export class ExcelDataService {

switch (profileForm.speakerType) {
case 'Talk - Online':
cellLocation = { sheetNumber: 0, rowNumber: 14, cellNumber: 3, value: 1 };
cellLocation = { sheetNumber: 0, rowNumber: 14, cellNumber: 4, value: 1 };
break;
case 'Workshop - Online':
cellLocation = { sheetNumber: 0, rowNumber: 12, cellNumber: 3, value: 1 };
cellLocation = { sheetNumber: 0, rowNumber: 12, cellNumber: 4, value: 1 };
break;
case 'Talk - Live Talk':
cellLocation = { sheetNumber: 0, rowNumber: 13, cellNumber: 3, value: 1 };
cellLocation = { sheetNumber: 0, rowNumber: 13, cellNumber: 4, value: 1 };
break;
default:
console.log('Invalid Request');
Expand Down
Expand Up @@ -104,6 +104,7 @@ <h5 class="k-h5"><span class="k-font-weight-normal">TOTAL:</span> {{ calculateTo
<div class="form-section">
<div class="buttons-container">
<button
[disabled]="formGroup.invalid || !formGroup.dirty"
kendoButton
themeColor="primary"
type="submit"
Expand All @@ -113,6 +114,7 @@ <h5 class="k-h5"><span class="k-font-weight-normal">TOTAL:</span> {{ calculateTo
Book Now
</button>
<kendo-button
[disabled]="!formGroup.dirty"
type="button"
(click)="clearForm()"
size="large"
Expand Down

0 comments on commit 4489937

Please sign in to comment.