Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c9f19c0

Browse filesBrowse files
committed
Always request camelCase in all API calls
1 parent 0790981 commit c9f19c0
Copy full SHA for c9f19c0

File tree

Expand file treeCollapse file tree

5 files changed

+5
-5
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+5
-5
lines changed

‎src/ServiceStack/modules/admin-ui/components/AdminUsers.html

Copy file name to clipboardExpand all lines: src/ServiceStack/modules/admin-ui/components/AdminUsers.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
this.request.skip = routes.page > 0 ? this.pageSize * Number(routes.page || 1) : 0
2424
this.request.take = this.pageSize
2525
let complete = delaySet(x => this.loading = x)
26-
client.api(this.request)
26+
client.api(this.request, { jsconfig: 'eccn' })
2727
.then(api => {
2828
this.api = api
2929
complete()

‎src/ServiceStack/modules/ui/index.html

Copy file name to clipboardExpand all lines: src/ServiceStack/modules/ui/index.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</div>
5757
<script src="../js/require.js?vfx=hash"></script>
5858
<script src="../js/servicestack-client.js?vfx=hash"></script>
59-
<script src="../types/js"></script>
59+
<script src="../types/js?vfx=hash"></script>
6060
<script>
6161
Object.assign(window, exports)
6262
/*shared/js:core */

‎src/ServiceStack/modules/ui/js/stores.js

Copy file name to clipboardExpand all lines: src/ServiceStack/modules/ui/js/stores.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ let store = PetiteVue.reactive({
178178
} else {
179179
auth = new Authenticate({ provider, ...args })
180180
}
181-
client.api(auth)
181+
client.api(auth, { jsconfig: 'eccn' })
182182
.then(r => {
183183
this.api = r
184184
if (r.error && !r.error.message)

‎tests/NorthwindAuto/admin-ui/components/AdminUsers.html

Copy file name to clipboardExpand all lines: tests/NorthwindAuto/admin-ui/components/AdminUsers.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
this.request.take = this.pageSize
3131

3232
let complete = delaySet(x => this.loading = x)
33-
client.api(this.request)
33+
client.api(this.request, { jsconfig: 'eccn' })
3434
.then(api => {
3535
this.api = api
3636
complete()

‎tests/NorthwindAuto/ui/js/stores.js

Copy file name to clipboardExpand all lines: tests/NorthwindAuto/ui/js/stores.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ let store = PetiteVue.reactive({
205205
} else {
206206
auth = new Authenticate({ provider, ...args })
207207
}
208-
client.api(auth)
208+
client.api(auth, { jsconfig: 'eccn' })
209209
.then(r => {
210210
this.api = r
211211
if (r.error && !r.error.message)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.