Skip to content

Commit

Permalink
import assessment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ROSHAN SAHU committed Nov 25, 2024
1 parent 576079b commit 83f9ce9
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 83f9ce9

Please sign in to comment.