Skip to content

Commit b7c67b5

Browse files
DimitarTodorovVladimirAmiorkov
authored andcommitted
Fix: rename load on demand examples titles. (#85)
1 parent 1719bfc commit b7c67b5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sdkAngular/app/app.routing.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -128,28 +128,28 @@ let APP_ROUTES: Routes = [
128128
path: "ListViewDynamicSizeAutoComponent",
129129
loadChildren: './listview/listview-examples.module#ListViewExamplesModule',
130130
data: {
131-
"title": "Auto with Dynamic Size"
131+
"title": "Auto with Variable Item Size"
132132
}
133133
},
134134
{
135135
path: "ListViewDynamicSizeManualComponent",
136136
loadChildren: './listview/listview-examples.module#ListViewExamplesModule',
137137
data: {
138-
"title": "Manual with Dynamic Size"
138+
"title": "Manual with Variable Item Size"
139139
}
140140
},
141141
{
142142
path: "ListViewFixedSizeAutoComponent",
143143
loadChildren: './listview/listview-examples.module#ListViewExamplesModule',
144144
data: {
145-
"title": "Auto with Fixed Size"
145+
"title": "Auto with Fixed Item Size"
146146
}
147147
},
148148
{
149149
path: "ListViewFixedSizeManualComponent",
150150
loadChildren: './listview/listview-examples.module#ListViewExamplesModule',
151151
data: {
152-
"title": "Manual with Fixed Size"
152+
"title": "Manual with Fixed Item Size"
153153
}
154154
},
155155
{
@@ -931,4 +931,4 @@ let APP_ROUTES: Routes = [
931931
}
932932
];
933933

934-
export const routing = NativeScriptRouterModule.forRoot(APP_ROUTES);
934+
export const routing = NativeScriptRouterModule.forRoot(APP_ROUTES);

0 commit comments

Comments
 (0)