diff --git a/docs/charts/keyboard/static/index.html b/docs/charts/keyboard/static/index.html
index d4a8927f1a6..afb92e5963a 100644
--- a/docs/charts/keyboard/static/index.html
+++ b/docs/charts/keyboard/static/index.html
@@ -51,8 +51,8 @@
Note: This is a very preliminary chart. For feedback on this chart or
contents, please comment on:
- https://unicode-org.atlassian.net/browse/CLDR-16655https://unicode-org.atlassian.net/browse/CLDR-17205
@@ -68,14 +68,14 @@
{{file}}
-
-
Form: {{ layers.form }}
+ Form: {{ layers.formId }}
ID: {{ layers.id }}
minDeviceWidth: {{ layers.minDeviceWidth }}mm
-
-
Modifier: {{ layer.modifier }}
+ Modifier: {{ layer.modifiers }}
{{ layer.id }}
@@ -84,8 +84,8 @@
{{ layer.id }}
:class="getKeyClass(key)"
v-for="key of row.keys"
>
- {{key.to}}
- ☞ {{key.switch}}
+ {{key.output}}
+ ☞ {{key.layerId}}
diff --git a/docs/charts/keyboard/static/keyboard-chart.js b/docs/charts/keyboard/static/keyboard-chart.js
index 81b9c674c2b..1f8be16e851 100644
--- a/docs/charts/keyboard/static/keyboard-chart.js
+++ b/docs/charts/keyboard/static/keyboard-chart.js
@@ -60,9 +60,9 @@ function mogrifyKeys(keys) {
return keys.reduce((p, v) => {
// TODO: any other swapping
mogrifyAttrs(v);
- const { id, to } = v;
- if (to) {
- v.to = unescapeStr(to);
+ const { id, output } = v;
+ if (output) {
+ v.output = unescapeStr(output);
}
p[id] = v;
return p;