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
It is a good practice to set a unique ID like `helloWorldButton` to key controls of your app so that can be identified easily. If the attribute \`id\` is not specified, the OpenUI5 runtime generates unique but changing ID like \`\_\_button23\` for the control. Inspect the DOM elements of your app in the browser to see the difference.
... so that they can be identified easily.
If the attribute `id` is not specified...
should be
If the attribute id is not specified...
... generates unique but changing ID like `__button23` for the control.
should be
... generates unique but changing IDs like __button23 for the control.
The text was updated successfully, but these errors were encountered:
ui5-typescript-walkthrough/steps/16/README.md
Line 137 in fc32982
... so that they can be identified easily.
If the attribute `id` is not specified...
should be
If the attribute
id
is not specified...... generates unique but changing ID like `__button23` for the control.
should be
... generates unique but changing IDs like
__button23
for the control.The text was updated successfully, but these errors were encountered: