From b06d3b33b4b7fcf7cf54d5ece1ce5f602e344a93 Mon Sep 17 00:00:00 2001 From: joshuaboud Date: Tue, 28 Jun 2022 14:28:24 -0300 Subject: [PATCH] update comments --- navigator/src/keys.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/navigator/src/keys.js b/navigator/src/keys.js index 5825749..93a858c 100644 --- a/navigator/src/keys.js +++ b/navigator/src/keys.js @@ -1,20 +1,20 @@ /** - * Notifications component instance to add notifs + * Notifications component instance to add notifs (ref) */ export const notificationsInjectionKey = Symbol(); /** - * Settings object {@link NavigatorSettings} + * Settings object {@link NavigatorSettings} (reactive) */ export const settingsInjectionKey = Symbol(); /** - * Path history object + * Path history object (reactive) */ export const pathHistoryInjectionKey = Symbol(); /** - * Clipboard array ref + * Clipboard array (ref) */ export const clipboardInjectionKey = Symbol(); /** - * localStorage lookup key for last path + * localStorage lookup key for last path (string from cockpit.localStorage) */ export const lastPathStorageKey = "houstonNavigatorLastPathKey";