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
ng: make sure we do not push 'null' onto hash (tensorflow#3494)
In the Angular version of TensorBoard, we keep the activePlugin state in
the Ngrx Store. In it, when activePlugin was never set, we use `null` to
denote the emptiness. However, this null state was incompatible with how
hash_storage works.
tf_storage coerces the input, which wrongly coerced the null state
(Angular build tools did not catch the wrong typing) in the activePlugin
to "null" and set the hash as "#null".
This change fixes the issue by converting `null` to '' which tf_storage
understands to be the empty state.
0 commit comments