Skip to content

Commit

Permalink
import assessment fix (microsoft#26076)
Browse files Browse the repository at this point in the history
Co-authored-by: ROSHAN SAHU <[email protected]>
  • Loading branch information
sahuroshan and ROSHAN SAHU authored Nov 25, 2024
1 parent fa9b744 commit 9835b85
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ export class AssessmentDetailsHeader {
// this value is populated to handle the case when user selects a target type and want to resume later.
this._targetSelectionDropdown.value = this.getTargetTypeBasedOnModel(migrationStateModel._targetType);

await this._viewDetailsLink.updateCssStyles({ 'display': 'none' });
await this._generateTemplateLink.updateCssStyles({ 'display': 'none' });
await this._separator.updateCssStyles({ 'display': 'none' });
await this._viewDetailsLink?.updateCssStyles({ 'display': 'none' });
await this._generateTemplateLink?.updateCssStyles({ 'display': 'none' });
await this._separator?.updateCssStyles({ 'display': 'none' });



Expand Down Expand Up @@ -276,9 +276,9 @@ export class AssessmentDetailsHeader {
this._valueContainers[0].value = configurationValue;

if (configurationValue !== "--") {
await this._viewDetailsLink.updateCssStyles({ 'display': 'block' });
await this._generateTemplateLink.updateCssStyles({ 'display': 'block' });
await this._separator.updateCssStyles({ 'display': 'block' });
await this._viewDetailsLink?.updateCssStyles({ 'display': 'block' });
await this._generateTemplateLink?.updateCssStyles({ 'display': 'block' });
await this._separator?.updateCssStyles({ 'display': 'block' });
}

await this._azureRecommendationLoadingText.updateCssStyles({ 'display': 'none' });
Expand Down

0 comments on commit 9835b85

Please sign in to comment.