When using the following query:
// exception count by problem ID
let start=ago(90m);
let end=ago(30m);
let timeGrain=1m;
let dataset=exceptions
// additional filters can be applied heret
| where timestamp > start and timestamp <= end
| where client_Type != "Browser" ;
// calculate exception count for all exceptions
dataset
| summarize sum_itemcount = dcount(timestamp)/2
where the timestamp is mentioned on the query and not on the portal, if we pin the outcome to a dashboard, then we see the following informational message:
"The query time range may be different from the one on the dashboard"

Is there any way we ca remove this information message from the Dashboard?