Browse Source

Graph: fix time label description for datalink suggestions (#18214)

David 6 years ago
parent
commit
9cd069f2c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/panel/panellinks/link_srv.ts

+ 1 - 1
public/app/features/panel/panellinks/link_srv.ts

@@ -39,7 +39,7 @@ export const getDataLinksVariableSuggestions = (): VariableSuggestion[] => [
   },
   {
     value: `${DataLinkBuiltInVars.valueTime}`,
-    documentation: "Adds narrowed down time range relative to data point's timestamp",
+    documentation: 'Time value of the clicked datapoint (in ms epoch)',
     origin: VariableOrigin.BuiltIn,
   },
 ];