Skip to content

Commit

Permalink
chore: teams integration fixes KMCNG-2600, KMCNG-2599, KMCNG-2598
Browse files Browse the repository at this point in the history
  • Loading branch information
amirch1 committed Mar 28, 2024
1 parent c266919 commit f68b213
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</div>
</div>

<div class="kRow" [class.marginTop]="_profileForm.get('upload').value === 0">
<div class="kRow kHidden" [class.marginTop]="_profileForm.get('upload').value === 0">
<div class="kLabel">
<span>{{'applications.settings.integrationSettings.teams.transcripts' | translate}}</span>
</div>
Expand Down Expand Up @@ -183,9 +183,9 @@
[value]="false"
formControlName="userId"
[label]="'applications.settings.integrationSettings.teams.azure' | translate"></p-radioButton>
<kInputHelper class="kHelp" trigger="click">
<span>{{'applications.settings.integrationSettings.teams.azure_tt' | translate}}</span>
</kInputHelper>
<!-- <kInputHelper class="kHelp" trigger="click">-->
<!-- <span>{{'applications.settings.integrationSettings.teams.azure_tt' | translate}}</span>-->
<!-- </kInputHelper>-->
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
height: calc(100vh - 200px);
overflow-y: auto;
}

.kContainer {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -77,6 +76,9 @@
display: flex;
margin-bottom: 20px;
color: $kGrayscale1;
&.kHidden {
margin-bottom: 0px;
}
&.marginTop {
margin-top: 20px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export class EditTeamsProfileComponent implements OnDestroy {
private _logger: KalturaLogger) {
this._participationOptions = [
{value: 0, label: this._appLocalization.get('applications.settings.integrationSettings.teams.users1')},
{value: 1, label: this._appLocalization.get('applications.settings.integrationSettings.zoom.hosts3')},
{value: 3, label: this._appLocalization.get('applications.settings.integrationSettings.zoom.hosts4')}
{value: 2, label: this._appLocalization.get('applications.settings.integrationSettings.zoom.hosts2')},
{value: 1, label: this._appLocalization.get('applications.settings.integrationSettings.zoom.hosts3')}
];
this._hostsOptions = [
{value: 0, label: this._appLocalization.get('applications.settings.integrationSettings.zoom.hosts1')},
Expand Down
4 changes: 2 additions & 2 deletions src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -3054,7 +3054,7 @@
"download": "Download recent logs",
"account": "Account name",
"new": "Add new Teams integration",
"name_tt": "Name tooltip",
"name_tt": "Enter integration name",
"tenantId": "Directory (tenant) ID",
"tenantId_tt": "Directory (tenant) ID tooltip",
"appClientId": "Application (client) ID",
Expand All @@ -3070,7 +3070,7 @@
"secretSuccess": "Secret updated successfully",
"edit": "Edit Teams account",
"categories": "Publish to categories",
"categories_tt": "Publish to categories tooltip",
"categories_tt": "Enter categories that the ingested media should be published to",
"transcripts": "Upload Teams transcripts",
"organizers": "Co-organizers",
"presenters": "Presenters",
Expand Down

0 comments on commit f68b213

Please sign in to comment.