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
We just added document title/description editing in #6. However, the page <head> is composed statically without tying into state, so they don't update when the new document data is saved. The <meta> tags are invisible to the user, but the <title> (which has the document name in the window/tab title) is visible, and becomes stale until the page is re-rendered.
We need to either pass a title-updating function down to the document (gross) or add state to the page, or… something.
The text was updated successfully, but these errors were encountered:
We just added document title/description editing in #6. However, the page
<head>
is composed statically without tying into state, so they don't update when the new document data is saved. The<meta>
tags are invisible to the user, but the<title>
(which has the document name in the window/tab title) is visible, and becomes stale until the page is re-rendered.We need to either pass a title-updating function down to the document (gross) or add state to the page, or… something.
The text was updated successfully, but these errors were encountered: