Summary
Currently, there is only one script (script1) shown in the scripts page. It is one hard-coded script. It needs to show the list of in memory scripts property that was created in #2
Implementation Details
Remove script1 property. Update the scripts page to loop over the in memory scripts and show a script-card for each script using NgFor: *ngFor="let item in items".
Summary
Currently, there is only one script (
script1) shown in the scripts page. It is one hard-coded script. It needs to show the list of in memory scripts property that was created in #2Implementation Details
Remove
script1property. Update the scripts page to loop over the in memory scripts and show a script-card for each script using NgFor:*ngFor="let item in items".