We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbc113 commit 1b2de35Copy full SHA for 1b2de35
src/parse-config/deprecations.ts
@@ -21,6 +21,8 @@ function _getDeprecationError(path: string, value: any) {
21
}
22
if (path.match(/^entities\.\d+\.lambda$/))
23
return "removed in v3.0.0, use filters instead";
24
+ if (path.match(/^entities\.\d+\.show_value\.right_margin$/))
25
+ return "removed in v3.0.0, use `true` and set the global `time_offset` or `layout.margins.r` to make space at the right. ";
26
if (path.match(/^significant_changes_only$/))
27
return "removed in v3.0.0, it is now always set to false";
28
if (path.match(/^minimal_response$/))
0 commit comments