Skip to content

Commit d8b0a19

Browse files
committed
docs: nest Expression Binding and Formatter under View
Move Expression Binding out of Model and Formatter out of Specifics into a new View sub-group.
1 parent 256cfaa commit d8b0a19

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

docs/.vitepress/config.mjs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,22 @@ export default defineConfig({
118118
collapsed: true,
119119
items: [
120120
{ text: "Controller", link: "/development/general" },
121-
{ text: "View", link: "/development/view" },
121+
{
122+
text: "View",
123+
link: "/development/view",
124+
collapsed: true,
125+
items: [
126+
{ text: "Expression Binding", link: "/development/model/expression_binding" },
127+
{ text: "Formatter", link: "/development/specific/formatter" },
128+
],
129+
},
122130
{
123131
text: "Model",
124132
link: "/development/model/model",
125133
collapsed: true,
126134
items: [
127135
{ text: "Tables, Trees", link: "/development/model/tables" },
128136
{ text: "Device Model", link: "/development/model/device" },
129-
{ text: "Expression Binding", link: "/development/model/expression_binding" },
130137
{ text: "OData", link: "/development/model/odata" },
131138
],
132139
},
@@ -180,7 +187,6 @@ export default defineConfig({
180187
link: "/development/specific/geolocation",
181188
},
182189
{ text: "URL", link: "/development/specific/url" },
183-
{ text: "Formatter", link: "/development/specific/formatter" },
184190
{ text: "CL_DEMO_OUTPUT", link: "/development/specific/demo_output" },
185191
],
186192
},

0 commit comments

Comments
 (0)