You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
The view script details screen needs to have a component that will be used to view/update the script.
Implementation Details
Generate a new script-details-card component and module. Follow the same procedure done for Add Script Details Screen #5, but the difference here is: the name is now script-details-card, and we don't want to put this in the app module, we want it in the script details screen module, so the flag for the module would be -module=script-details-screen
Next, we want to be able to put a <script-details-card> element in the script details screen. To do this, the new script details component needs to be exported in the script details module (similar to how script card component is exported in the script card module). Make sure the details card shows up on the details screen - it should have the default angular - "script details card works!" text.
Summary
The view script details screen needs to have a component that will be used to view/update the script.
Implementation Details
Generate a new
script-details-cardcomponent and module. Follow the same procedure done for Add Script Details Screen #5, but the difference here is: the name is nowscript-details-card, and we don't want to put this in the app module, we want it in the script details screen module, so the flag for the module would be-module=script-details-screenNext, we want to be able to put a
<script-details-card>element in the script details screen. To do this, the new script details component needs to be exported in the script details module (similar to how script card component is exported in the script card module). Make sure the details card shows up on the details screen - it should have the default angular - "script details card works!" text.